mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
testdata for IDEA-57633
This commit is contained in:
+12
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user