Files
wren/test/io/print_bad_to_string.wren
T

7 lines
119 B
Plaintext
Raw Normal View History

class BadToString {
2015-09-01 08:16:04 -07:00
construct new() {}
toString { 3 }
}
2015-07-10 09:18:22 -07:00
IO.print(BadToString.new()) // expect: [invalid toString]