v2 / vlib / v / checker / tests / string_interpolation_invalid_fmt.vv
5 lines · 5 sloc · 68 bytes · f2d9fa38155f6cf3893175cd19301f2dbb7b132b
Raw
1fn interpolate_wrong() string {
2 a := 5
3 x := '${a:xy}'
4 return x
5}
6