v/vlib/v/checker/tests/cast_string_with_byte_err.out

6 lines
219 B
Plaintext

vlib/v/checker/tests/cast_string_with_byte_err.vv:2:12: error: cannot cast type `byte` to string, use `by.str()` instead.
1 | for by in 'abc' {
2 | println(string(by))
| ~~~~~~~~~~
3 | }