blob: 8e995dc9c9053b25f4cdd609381a1842d5b4c019 [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class Some {
public static void main(String arg, @Nullable StringBuilder sb) {
if (arg != null) {
return;
}
if (sb != null) { }
if (sb != null) { }
}
}