mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
testdata for IDEA-139069
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
abstract class A<K extends A<?>> {
|
||||
void bar(K x) {
|
||||
String s = foo(x).toLowerCase();
|
||||
}
|
||||
|
||||
abstract <T extends A<S>, S extends A<?>> void foo(A<T> x);
|
||||
abstract String foo(Object x);
|
||||
}
|
||||
Reference in New Issue
Block a user