blob: bfdc5344a5d76e6151e607d2128970a830e9a652 [file] [log] [blame]
// "Change 'new FooImpl<short[]>() {...}' to 'new Boo.FooImpl<String>()'" "true"
class Boo {
abstract class Foo<T>{}
abstract class FooImpl<K> extends Foo<K>{}
private Foo<String> foo()
{
return new F<caret>ooImpl<short[]>() {};
}
}