summaryrefslogtreecommitdiffstats
path: root/tests/new/pr728/AnotherClass.java
blob: c48be70892b3ad83ecac32ac80f42c9e2d037078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.aspectj.testing.*;

/** @testcase PR#728 file order in type searching */
public class AnotherClass implements Interface {
  public static class InnerClass { }
    public static void main (String[] args) {
        String s = new AnotherClass.InnerClass().toString(); 
        Tester.expectEvent(s);
        Tester.checkAllEvents();
    } 
}