5 lines
74 B
Text
5 lines
74 B
Text
|
// Test inheritance of itself
|
||
|
|
||
|
class Main extends Main {
|
||
|
void main() {}
|
||
|
}
|