blob: 051e42810e3d582c4505e3cb5e1ac447af8ba683 [file] [log] [blame]
import java.util.List;
class A<T> {
List<T> getKey(){return null;}
}
public class B extends A<S<caret>tring> {
List<String> getKey() {
return new List<String>();
}
}