aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr64222/C.java
blob: f7c3c4024692af2c6268306ed31b9c42e38f0665 (plain)
1
2
3
4
5
6
7
8
9
class C {
	int dummy() {return 5;}
}

aspect Foo {
	around(): call(int C.dummy()) {
		proceed();
	}
}