summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/design/DesignG.java
blob: dd763614681acb41f28d44a52e4958c1928cd928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.*;

// Checking what gets into the target classes...
//  Here the ITDs are on some interface and so found in the class
//  that implements the interface

class C implements I<String> {}

interface I<T> {}

aspect X {

  List<Z> I<Z>.ln; 

  Q I<Q>.n; 

}