compiler-design-eth/javali_tests/HW3_nop90/MethodCallsErrors/MethodFromArray.javali

8 lines
97 B
Text
Raw Permalink Normal View History

2020-01-15 22:32:25 +01:00
// An array doesn't have methods
class Main {
Object[] array;
void main() {
array.go();
}
}