Files
openide/java/java-tests/testData/inspection/dataFlow/fixture/GenericParameterNullity.java

28 lines
476 B
Java

import foo.*;
class Test {
public void test() {
@NotNull
String a = notNull(getNullable());
@NotNull
String b = <warning descr="The call to notNull always fails, according to its method contracts">notNull</warning>(null);
}
@Nullable
public String getNullable() {
return null;
}
@NotNull
private static <T> T notNull(@Nullable T value) {
if (value == null) {
throw new RuntimeException("null");
}
return value;
}
}