blob: 33dd242e2f982cf3d1ad47219c53706a2b41f97a [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class DDD {
int test(boolean t) {
if (t && <warning descr="Dereference of 'fff()' may produce 'java.lang.NullPointerException'">fff()</warning>.length == 1) {
return 0;
}
return 1;
}
public @Nullable DDD[] fff() {
return new DDD[8];
}
}