v2 / vlib / v / checker / tests / char_str.out
3 lines · 3 sloc · 188 bytes · f029f7e897de0f0dcebc48fd7f7cf3087ac2ad88
Raw
1vlib/v/checker/tests/char_str.vv:1:1: error: calling `.str()` on type `char` is not allowed, use its address or cast it to an integer instead
2 1 | char(91).str()
3 | ~~~~~~~~~~~~~~
4