blob: c324de5954e88e162b2d2d1388b9d6dabc8fa9c4 [file] [log] [blame]
class A {
public String method() {
try {
<selection>try {
return "";
}
finally {
System.out.println("f");
}</selection>
}
catch (Error e) {
}
return "";
}
}