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

16 lines
No EOL
225 B
Text

// Call method that has been overridden (both the new and old one)
class Other {
void method() {}
}
class Main extends Other {
void main() {
Other o;
method();
o = (Other) this;
o.method();
}
void method() {}
}