mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 11:20:12 +07:00
10 lines
116 B
Java
10 lines
116 B
Java
class Test {
|
|
void foo() {
|
|
final Foo<Number> a = new Foo<Number>(1);
|
|
}
|
|
}
|
|
|
|
class Foo<T> {
|
|
Foo(T t) {
|
|
}
|
|
} |