vxx2 / vlib / v / checker / tests / string_index_non_int_err.vv
6 lines · 6 sloc · 79 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn main() {
2 v := 'foo'
3 println(v['f'])
4 println(v[true])
5 println(v[[23]])
6}
7