2014-10-15 06:36:42 -07:00
|
|
|
var fiber = new Fiber {
|
|
|
|
|
"s".unknown
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IO.print(fiber.error) // expect: null
|
2015-01-04 14:42:11 -05:00
|
|
|
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.
|