blob: 5c6cc93430f4b50cedf7716dda6b90355eddf177 [file] [log] [blame]
class Tester {
String x() {
String o = "";
return newMethod(o);
}
private String newMethod(String o) {
String s;
try {
s = o;
}
finally {
}
return s;
}
}