compiler-design-eth/javali_tests/HW4_nop90/Casts/OkArrayToObjectCast.javali
Carlos Galindo 72cc3206c4
Homework 4
2020-01-15 22:34:57 +01:00

12 lines
137 B
Text
Executable file

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