Files

13 lines
207 B
Java

import org.jetbrains.annotations.*;
class Test {
public @Nullable String foo;
public void test() {
if (foo != null && foo.length() > 1) {
System.out.println(foo.length());
}
}
}