7 lines
110 B
Text
7 lines
110 B
Text
|
// Simple circular inheritance loop
|
||
|
|
||
|
class Main extends Other {
|
||
|
void main() {}
|
||
|
}
|
||
|
|
||
|
class Other extends Main {}
|