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

7 lines
No EOL
125 B
Text

// The main method can be inherited from another class
class OtherMain {
void main () {}
}
class Main extends OtherMain {}