summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/sharing/FieldN.aj
blob: e277d2ee1c08902267bab64e60c10ddd4aae8d55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import java.util.*;

public class FieldN {
  public static void main(String []argv) {
  }
}

interface I { }

aspect X {
  public List<Z> I<Z>.i; // error - the onType isn't generic!
}