// Test downcast from array to Object

class Main {
	void main() {
		A[] a;
		Object o;
		
		a = new A[5];
		
		o = (Object) a;
	}
}

class A{}