compiler-design-eth/javali_tests/HW3_nop90/InheritanceTests/CircularInheritanceErrors/SelfLoop.javali

5 lines
74 B
Text
Raw Normal View History

2020-01-15 22:32:25 +01:00
// Test inheritance of itself
class Main extends Main {
void main() {}
}