summaryrefslogtreecommitdiffstats
path: root/tests/features169/itdInnerTypes/ChoiceGenerics1.java
blob: 11b8bea9fbf79acc95d527e1de17e4e446d9df0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.*;

public class ChoiceGenerics1 {
  public static void main(String []argv) {
    new Keys<Integer>().choice = 42;
  }
}


aspect X {
  public static class ChoiceGenerics1.Keys<N> {
    public N choice = null;
  }
}