blob: f659bcc0de16d0f79adbde0aef46b7fda3d17bb8 [file] [log] [blame]
package trycatch_out;
public class TestThenStatement {
void foo() {
TestThenStatement bar= null;
if (bar != null)
try {
/*]*/bar.run();/*[*/
} catch (InterruptedException e) {
}
}
void run() throws InterruptedException{
}
}