v/vlib/v/checker/tests/string_index_assign_error.vv

5 lines
57 B
V

fn main() {
mut a := 'V is great!!'
a[0] = `R`
}