compiler-design-eth/javali_tests/HW3_nop90/FieldTests/ErrorFieldFromArray.javali
Carlos Galindo 0afc86ceeb
Homework 3
2020-01-15 22:32:25 +01:00

9 lines
No EOL
174 B
Text

// 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);
}
}