Files
wren/test/language/super/super_in_inherited_method.wren
T

10 lines
159 B
Plaintext
Raw Normal View History

2015-05-19 06:47:42 -07:00
class A {
callSuperToString { super.toString }
toString { "A.toString" }
}
class B is A {}
2015-07-10 09:18:22 -07:00
IO.print(B.new().callSuperToString) // expect: instance of B