blob: f1dea911b29a98421198ca01e3c75f6ea607c858 [file] [log] [blame]
class Test {
void foo() {
<selection>final String str = "";
if (str == "") {
return;
}</selection>
new Runnable() {
public void run() {
System.out.println(str);
}
}
}
}