blob: bd6dab8410f267fa6abb1de9c856a020de07a58f [file] [log] [blame]
class IdeaBugTest {
interface A<T> {
}
class B implements A<int[]> {
}
void test(A<?> a) {
B b = (B)a;
}
}