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

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


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