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

13 lines
137 B
Text
Raw Normal View History

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