aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr132349/TopLevelType.java
blob: fd29eddebb6da24b00c579eb8ad4353e346a6cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class TopLevelType<E> {
        public static class NestedType {}
        
        public static void main(String[] args) {
			TopLevelType tlt = new TopLevelType();
			NestedType nt = new NestedType();
			nt.someMethod();
		}
}

aspect SomeAspect {
        public void TopLevelType.NestedType.someMethod() {
        }
        
}