Files
wren/test/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"
ClosureType = new Fn { IO.print(a) }.type
}
class Subclass is ClosureType {} // expect runtime error: Subclass cannot inherit from Fn.