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

5 lines
No EOL
74 B
Text

// Test inheritance of itself
class Main extends Main {
void main() {}
}