mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
skip extends Object during new type param creation; test for IDEA-57449
This commit is contained in:
+10
@@ -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>
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
abstract class A1<X>{
|
||||
abstract <T> void foo(T t, X x);
|
||||
}
|
||||
|
||||
class B1<T> extends A1<T>{
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user