blob: 56b1576cc64b5a64e73bd65c66c2024f0c0550b4 [file] [log] [blame]
import org.jetbrains.annotations.*;
public class Test {
public @Nullable String foo;
public void test() {
if (foo != null && foo.length() > 1) {
System.out.println(foo.length());
}
}
}