mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
15 lines
312 B
Java
15 lines
312 B
Java
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];
|
|
}
|
|
}
|