v2 / vlib / v / checker / tests / index_invalid_call.vv
7 lines · 7 sloc · 208 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1// fixes https://github.com/vlang/v/issues/11539 , copied example map test code from https://github.com/spytheman
2fn main() {
3 m := map[string]string{}
4 eprintln(m['abc']())
5 array := ['', '1']
6 array[0]()
7}
8