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

aspect SomeAspect {
        public void TopLevelType3.NestedType<String>.someMethod() { // error - can't do that
        }
}