blob: c6a1bfb8e109b8470d87cdc69c500d2f8f61ab38 [file] [log] [blame]
// "Change 'new Foo<Integer>()' to 'new Foo<Number>()'" "true"
class Foo<T> {
Foo(T t) {}
Foo() {}
}
class Constructors {
public static void main(String[] args) {
Foo<Number> foo2 = new Foo<>();
}
}