mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-29 02:25:59 +07:00
15 lines
319 B
Java
15 lines
319 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
public 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];
|
|
}
|
|
}
|