vxx2 / vlib / v / checker / tests / string_index_assign_error.vv
4 lines · 4 sloc · 51 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn main() {
2 mut a := 'V is great!!'
3 a[0] = `R`
4}
5