blob: 0a7f4f936eb4aff75700fabcb64adae11158f96a [file] [log] [blame]
package trycatch_in;
public class TestThenStatement {
void foo() {
TestThenStatement bar= null;
if (bar != null)
/*]*/bar.run();/*[*/
}
void run() throws InterruptedException{
}
}