mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-40195 'constant expression' and @NotNull
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
class Test {
|
||||
private static void test(@NotNull Object foo) {
|
||||
assert foo != null;
|
||||
}
|
||||
|
||||
private static void test2(@NotNull Object foo) {
|
||||
if (foo == null) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
}
|
||||
private static void test3(@NotNull Object foo) {
|
||||
if (foo == null) throw new IllegalArgumentException();
|
||||
}
|
||||
|
||||
private static void test4(@NotNull Object foo) {
|
||||
if (<warning descr="Condition 'foo != null' is always 'true'">foo != null</warning>) throw new IllegalArgumentException();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user