blob: 54258869a2624a5a8f69a6050b4f8b09c048e37f [file] [log] [blame]
package invalid;
public class TestInterruptedExecutionFlow {
public void main() {
int i;
i= /*]*/foo()/*[*/;
}
public int foo() {
try {
return 10;
} catch(Exception e) {
return 20;
}
}
}