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

7 lines
110 B
Text
Raw Permalink Normal View History

2020-01-15 22:32:25 +01:00
// Simple circular inheritance loop
class Main extends Other {
void main() {}
}
class Other extends Main {}