blob: 9d877fba621a45fa6ea07e710313e37a82c5c070 [file] [log] [blame]
class C {
void m(String arg) {
if (arg != <caret>null && arg instanceof String) {
System.out.println(arg);
}
}
}