mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
GitOrigin-RevId: d419d4a1fcec36a86b1979a2feee50cb1fa70faf
11 lines
207 B
Java
11 lines
207 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) { }
|
|
}
|
|
} |