blob: 05b3b89e3b9004b09645dfdbb6cf9480e9d5e3bf [file] [log] [blame]
class A {
{
Object o;
try {
o = newMethod();
}
catch (Exception e) {
}
o.f();
}
private Object newMethod() {
Object o;
o = foo();
return o;
}
}