summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/changeTypeSignature/CompositeReturnType.java
blob: 051e42810e3d582c4505e3cb5e1ac447af8ba683 (plain)
1
2
3
4
5
6
7
8
9
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>();
   }
}