compiler-design-eth/javali_tests/HW3_nop90/NoSuchSymbolErrors/NoSuchMethod.javali

20 lines
252 B
Text
Raw Permalink Normal View History

2020-01-15 22:32:25 +01:00
// call an method that does not exist (even in superclass)
class Main extends Other {
void main() {
aux();
go();
}
void aux() {}
}
class Other {
void aux() {}
void otherAux() {}
void noGo() {}
void GO() {}
void gO() {}
void Go() {}
}