forked from Mirror/wren
8 lines
74 B
Plaintext
8 lines
74 B
Plaintext
|
|
class A {}
|
||
|
|
|
||
|
|
class B is A {
|
||
|
|
this new() {
|
||
|
|
super // expect error
|
||
|
|
}
|
||
|
|
}
|