// Test downcast from Object to array class Main { void main() { A[] a; Object o; o = new Object(); a = (A[]) o; } } class A{}