mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-15 11:58:18 +07:00
moving tests to CE
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public class Npe {
|
||||
void bar() {
|
||||
final @NotNull Object o = call();
|
||||
if (o == null) {}
|
||||
}
|
||||
Object call() {return new Object();}
|
||||
}
|
||||
Reference in New Issue
Block a user