blob: 52900ce6ee0d814cf317a02d9dcee062910c9b72 [file] [log] [blame]
public class S {
{
String s;
try {
s = newMethod();
} finally {
}
System.out.print(s);
}
private String newMethod() {
String s;
s = "";
return s;
}
}