You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExtendsOuterAbstract_PR408.java 268B

12345678
  1. import org.aspectj.testing.*;
  2. public class ExtendsOuterAbstract_PR408 extends OuterAbstract_PR408 {
  3. public void go() {
  4. InnerAbstract inner = new InnerAbstract("string") {};
  5. inner.go();
  6. Tester.event("ExtendsOuterAbstract_PR408.go");
  7. }
  8. }