use interface where possible: ignore right hand of assignment type argument (IDEADEV-39117)

This commit is contained in:
anna
2009-10-07 20:46:10 +04:00
parent 24d39869bb
commit d7da82925e
14 changed files with 46 additions and 0 deletions

View File

@@ -117,6 +117,14 @@ public class TurnRefsToSuperTest extends MultiFileTestCase {
doTest("B", "A", false);
}
public void testTypeArgumentsRH() throws Exception {
doTest("IImpl", "I", false);
}
public void testTypeArgumentsRH1() throws Exception {
doTest("IImpl", "I", false);
}
private void doTest(@NonNls final String className, @NonNls final String superClassName, final boolean replaceInstanceOf) throws Exception {
doTest(new PerformAction() {
public void performAction(VirtualFile rootDir, VirtualFile rootAfter) throws Exception {