mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
11 lines
143 B
Java
11 lines
143 B
Java
class IdeaBugTest {
|
|
interface A<T> {
|
|
}
|
|
|
|
class B implements A<int[]> {
|
|
}
|
|
|
|
void test(A<?> a) {
|
|
B b = (B)a;
|
|
}
|
|
} |