compiler-design-eth/javali_tests/HW3_nop90/FieldTests/ErrorFieldFromArray.javali

9 lines
174 B
Text
Raw Normal View History

2020-01-15 22:32:25 +01:00
// Access a field from an array (error, not a class type). Not even the length field exists
class Main {
void main() {
int[] c;
c = new int[10];
write(c.length);
}
}