Files
wren/test/core/fiber/error.wren
T

8 lines
231 B
Plaintext
Raw Normal View History

2015-07-10 09:18:22 -07:00
var fiber = Fiber.new {
2014-10-15 06:36:42 -07:00
"s".unknown
}
2015-09-15 07:46:09 -07:00
System.print(fiber.error) // expect: null
System.print(fiber.try()) // expect: String does not implement 'unknown'.
System.print(fiber.error) // expect: String does not implement 'unknown'.