blob: 98789a63182ed938231d5f1a99e2591052444153 [file] [log] [blame]
class Pos05 {
static class Foo<X> {
Foo(X x) {}
}
void m(Foo<Integer> fi) {}
void test() {
m(new Foo<>(1));
}
}