Files
openide/java/java-tests/testData/codeInsight/delegateMethods/beforeSuperSubstitution.java
2015-02-12 12:35:07 +01:00

25 lines
433 B
Java

public class K {
void kkkk(){}
}
class KImpl extends K {}
abstract class InspectionToolWrapper<T extends K> {
T myTool;
protected InspectionToolWrapper(T tool) {
myTool = tool;
}
public T getTool() {
return myTool;
}
}
class CommonInspectionToolWrapper extends InspectionToolWrapper<KImpl>{
protected CommonInspectionToolWrapper(KImpl tool) {
super(tool);
}
<caret>
}