blob: 6ac3efeaf372294a0e9ea9b460130f026153d58c (
plain)
1
2
3
4
5
6
7
|
vlib/v/checker/tests/string_interpolation_invalid_fmt.vv:3:12: error: format specifier may only be one letter
1 | fn interpolate_wrong() string {
2 | a := 5
3 | x := '${a:xy}'
| ~~
4 | return x
5 | }
|