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.

AnotherClass.java 353B

12345678910111213
  1. import org.aspectj.testing.*;
  2. /** @testcase PR#728 file order in type searching */
  3. public class AnotherClass implements Interface {
  4. public static class InnerClass { }
  5. public static void main (String[] args) {
  6. String s = new AnotherClass.InnerClass().toString();
  7. Tester.expectEvent(s);
  8. Tester.checkAllEvents();
  9. }
  10. }