class CastArray {
    void test(Object a) {
        int[] b = (int[]) a;
    }
}
