mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 17:16:50 +07:00
11 lines
150 B
Java
11 lines
150 B
Java
public class IdeaBugTest {
|
|
interface A<T> {
|
|
}
|
|
|
|
class B implements A<int[]> {
|
|
}
|
|
|
|
void test(A<?> a) {
|
|
B b = (B)a;
|
|
}
|
|
} |