vxx2 / vlib / v / checker / tests / string_interpolation_invalid_fmt.out
7 lines · 7 sloc · 252 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/string_interpolation_invalid_fmt.vv:3:12: error: format specifier may only be one letter
2 1 | fn interpolate_wrong() string {
3 2 | a := 5
4 3 | x := '${a:xy}'
5 | ~~
6 4 | return x
7 5 | }
8