mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 00:28:04 +01:00
8 lines
267 B
Plaintext
8 lines
267 B
Plaintext
var fiber = new Fiber {
|
|
"s".unknown
|
|
}
|
|
|
|
IO.print(fiber.error) // expect: null
|
|
IO.print(fiber.try) // expect: String does not implement method 'unknown' with 0 arguments.
|
|
IO.print(fiber.error) // expect: String does not implement method 'unknown' with 0 arguments.
|