vxx2 / vlib / v / checker / tests / print_char.out
3 lines · 3 sloc · 195 bytes · f029f7e897de0f0dcebc48fd7f7cf3087ac2ad88
Raw
1vlib/v/checker/tests/print_char.vv:1:1: error: `println` cannot print type `char` directly, print its address or cast it to an integer instead
2 1 | println(char(91))
3 | ~~~~~~~~~~~~~~~~~
4