1
0
forked from Mirror/wren
Files
wren/test/core/fiber/call_root.wren

9 lines
248 B
Plaintext
Raw Normal View History

var root = Fiber.current
System.print("begin root") // expect: begin root
Fiber.new {
System.print("in new fiber") // expect: in new fiber
root.call() // expect runtime error: Cannot call root fiber.
System.print("called root")
}.transfer()