blob: d7705f0542963f6faf4930c2eb1219a6f8f1dbd3 [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{
}
}