compiler-design-eth/javali_tests/HW3/ErrCircularInheritance.javali

10 lines
180 B
Text
Raw Normal View History

2020-01-15 22:32:25 +01:00
/* Test that the circular inheritance between Foo and Bar is detected */
class Foo extends Bar { }
class Bar extends Foo { }
class Main {
void main() {
writeln();
}
}