vxx2 / vlib / v / checker / tests / string_escape_x_err_b.out
5 lines · 5 sloc · 184 bytes · ab642cac43c0d20bc2ce796bae0522b194bbb3fc
Raw
1vlib/v/checker/tests/string_escape_x_err_b.vv:2:15: error: `\x` used without two following hex digits
2 1 | fn main() {
3 2 | println('\xhh')
4 | ^
5 3 | }
6