testdata for IDEA-57485

This commit is contained in:
anna
2012-10-23 21:08:41 +02:00
parent 7c50a4b1b4
commit ac1865fbc2
2 changed files with 10 additions and 0 deletions
@@ -0,0 +1,9 @@
abstract class A{
abstract <S extends Number & Comparable<?>, T extends Number & Comparable<? extends S>> T foo(
Comparable<? extends T> x,
Comparable<? extends T> y);
{
foo(1, 1L);
}
}