blob: b3aa84f465643a45c00c3ba69b15df9e532a3089 [file] [log] [blame]
import org.jetbrains.annotations.*;
class Test {
@NotNull
String text;
public Test(@Nullable String a)
{
if (a == null)
this.text = "test";
else
this.text = a;
}
}