blob: a49532d98d2fcf735a185bd1f8c5a1fdbe036d3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import java.util.*;
// Checking what gets into the target classes...
// Here the ITDs are on some target *class*
class C<T> {}
aspect X {
List C.list1;
List<Z> C<Z>.list2;
String C.field1;
Q C<Q>.field2;
}
|