Files
wren/test/language/inheritance/inherit_from_closure.wren
T

9 lines
171 B
Plaintext
Raw Normal View History

2015-02-27 08:08:27 -08:00
var ClosureType
{
var a = "a"
2015-07-10 09:18:22 -07:00
ClosureType = Fn.new { IO.print(a) }.type
2015-02-27 08:08:27 -08:00
}
class Subclass is ClosureType {} // expect runtime error: Subclass cannot inherit from Fn.