testdata for IDEA-139069

This commit is contained in:
Anna Kozlova
2015-05-20 10:47:25 +02:00
parent 443fda57f5
commit 6b65d86df3
2 changed files with 11 additions and 0 deletions
@@ -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);
}