testdata for IDEA-60818

This commit is contained in:
anna
2013-10-22 21:04:36 +02:00
parent 18ee2d80f1
commit e9fd7055e8
2 changed files with 12 additions and 0 deletions
@@ -0,0 +1,11 @@
public class IdeaBugTest {
interface A<T> {
}
class B implements A<int[]> {
}
void test(A<?> a) {
B b = (B)a;
}
}