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