Files
wren/test/io/print_bad_to_string.wren
T

6 lines
98 B
Plaintext
Raw Normal View History

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