mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
13 lines
158 B
Java
13 lines
158 B
Java
public class Pos05 {
|
|
|
|
static class Foo<X> {
|
|
Foo(X x) {}
|
|
}
|
|
|
|
void m(Foo<Integer> fi) {}
|
|
|
|
void test() {
|
|
m(new Foo<>(1));
|
|
}
|
|
}
|