mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
11 lines
201 B
Java
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) { }
|
|
} |