mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
testdata for IDEA-58692
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
class ExposeAnotherProblem {
|
||||
|
||||
class OneClass<T> {
|
||||
public T get(){
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
class AnotherClass<T> {}
|
||||
|
||||
|
||||
static <T, R extends OneClass<T>> R method1(AnotherClass<T> param) {
|
||||
return null;
|
||||
}
|
||||
|
||||
<E> E method2(AnotherClass<E> param){
|
||||
return method1(param).get();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user