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