skip extends Object during new type param creation; test for IDEA-57449

This commit is contained in:
anna
2013-01-08 14:26:33 +01:00
parent 93a7d9f158
commit 3e3d8cfd60
4 changed files with 20 additions and 1 deletions
@@ -0,0 +1,10 @@
abstract class A1<X>{
abstract <T> void foo(T t, X x);
}
class B1<T> extends A1<T>{
@Override
<T1> void foo(T1 t1, T t) {
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
}
}
@@ -0,0 +1,7 @@
abstract class A1<X>{
abstract <T> void foo(T t, X x);
}
class B1<T> extends A1<T>{
<caret>
}