blob: 38e4febd01490ac350d56b06ad4c1fcecf3c3320 [file] [log] [blame]
package p1;
public class TC {
public void runBare() {
}
protected void run(TR tr) {
tr.startTest(this);
P p= new P() {
public void protect() throws Throwable {
runBare();
}
};
tr.runProtected(this, p);
tr.endTest(this);
}
}