summaryrefslogtreecommitdiffstats
path: root/tests/bugs/Cosmetic.java
blob: bc874305bc9edcee416e0de372fc0472666df686 (plain)
1
2
3
4
5
6
7
8
9
10
11
 class Test {
	public static void main(String[] args) {
		test();
	}
	static void test() {
		throw new Error("hello");
	}
	static aspect A {
		declare soft : unknown.Error : call(void test()); // CE  should be a message saying cant bind type 'unknown.Error' and not 'unknown$Error'
	}
}