Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorMatchingSuper/afterGenerics1.java
2010-06-25 12:46:40 +04:00

10 lines
183 B
Java

// "Create constructor matching super" "true"
public class Test<T> {
Test (T t) {}
}
class Derived extends Test<String> {
<caret>Derived(String s) {
super(s);
}
}