blob: 22524625216d0e7bde561168bcc56573b11ecb5a [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class Test {
void method(@Nullable String o) {}
void method(@Nullable Integer o) {}
private void test(String foo) {
if (foo == null) {
method(<caret>(String) null);
}
}
}