Files
openide/java/java-tests/testData/compiler/notNullVerification/InterfaceStaticMethodParameter.java
Roman Shevchenko f8790a6cf9 [tests] one more case for not-null instrumentation test (EA-217655)
GitOrigin-RevId: 73ca03ecb3ba444856c1ceff2ab2251e2e49ba4d
2019-12-19 13:32:33 +00:00

11 lines
201 B
Java

import org.jetbrains.annotations.NotNull;
public class InterfaceStaticMethodParameter {
public static void test() {
I.test(null);
}
}
interface I {
static void test(@NotNull String s) { }
}