blob: 15bf8c64515adf5290bac53042ddddc3746064cb [file] [log] [blame]
class Tester {
String x() {
String o = "";
<selection>String s;
try {
s = o;
}
finally {
}
return s;</selection>
}
}