blob: d350d8c09391fd36aa153b467fc855722d576c4e [file] [log] [blame]
class Test {
void foo() {
final Foo<Number> a = new Foo<>(1);
}
}
class Foo<T> {
Foo(T t) {
}
}