summaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr241861/Test.java
blob: be9ca0201acfaebc59085835838364023b528012 (plain)
1
2
3
4
5
6
7
8
9
class Test<O> {
  O field;
}

class P {
  public static void main(String[] argv) {
     new Test<Integer>().field = 42;
  }
}