testdata for IDEA-57633

This commit is contained in:
Anna Kozlova
2013-08-15 13:49:58 +04:00
parent 230c6fd84b
commit 397c637699
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,12 @@
package pck;
import java.io.Serializable;
abstract class A {
abstract <T extends Comparable<?> & Serializable> void foo(T x, Integer y);
abstract <T extends Serializable & Comparable<?>> void foo(T x, Object y);
{
foo("", 1);
}
}