blob: 1046c611937616dcac0332017d252fcfa1661270 [file] [log] [blame]
import org.jetbrains.annotations.*;
class Test {
void foo(@NotNull String s) {
}
void bar(String str) {
foo(str);
}
}