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

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

class SimpleClass<N extends Number> { }

aspect X {
  public static List<N> SimpleClass<N>.i;  // error, static members in generic types cannot use the type variables
}