blob: b75c53a1e57800468b4bef73903219a6bff77a3f [file] [log] [blame]
package try_in;
public class A_test459 {
public abstract class Protectable {
public abstract void protect() throws Exception;
public void setUp() throws Exception {
}
}
public void foo() {
/*[*/Protectable p= new Protectable() {
public void protect() throws Exception {
setUp();
}
};/*]*/
}
}