blob: 3f28ff1416634040d3bc2c4169466a984ffac993 [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[]>() {
@Override
public int hashCode() {
return super.hashCode();
}
};
}
}