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