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