compiler-design-eth/javali_tests/HW4_nop90/Casts/OkArrayToObjectCast2.javali

14 lines
143 B
Text
Raw Normal View History

2020-01-15 22:34:57 +01:00
// Test downcast from array to Object
class Main {
void main() {
A[] a;
Object o;
a = new A[5];
o = (Object) a;
}
}
class A{}