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

13 lines
137 B
Plaintext

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