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; } }