blob: b8778cbd36f2d109407defa4b66460c35a70451e [file] [log] [blame]
class Foo {
String foo() {
<selection>String var = null;
if (var == null) {
return "";
}</selection>
System.out.println(var);
}
}