class CovariantArrayGoesWrong {
    void foo() {
        String[] sa = { "Hello", "World" };
        Object[] oa = sa; // Okay, because String ≤ Object
        oa[1] = new Object(); // Run-time error: ArrayStoreException
    }
}
