14 lines
No EOL
143 B
Text
14 lines
No EOL
143 B
Text
// Test downcast from array to Object
|
|
|
|
class Main {
|
|
void main() {
|
|
A[] a;
|
|
Object o;
|
|
|
|
a = new A[5];
|
|
|
|
o = (Object) a;
|
|
}
|
|
}
|
|
|
|
class A{} |