aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/ImportFromUnnamed.java
blob: c1f45f58d0f2af9d2c6f09633ec402033ff31806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.aspectj.testing.Tester;
import DeclaredExcs;

// PR#134

public class ImportFromUnnamed {
    public static void main(String[] args) { test(); }

    public static void test() {
        DeclaredExcs a = new DeclaredExcs();
        Tester.checkEqual(a.getClass().getName(), "DeclaredExcs", "class name");
    }
}