blob: 6b384e2dac3a1ea894e765d9e0f79335d4b60896 [file] [log] [blame]
import org.jetbrains.annotations.*;
public class Test {
private static void foo(@NotNull String smth) {
}
public static void main(String[] args) {
String s = args[0];
foo(null);
}
}