| 1 | vlib/v/checker/tests/array_init_with_len_cap_err.vv:1:16: error: array len can not be negative |
| 2 | 1 | _ = []int{len: -1} |
| 3 | | ~~ |
| 4 | 2 | _ = []int{cap: -1} |
| 5 | vlib/v/checker/tests/array_init_with_len_cap_err.vv:2:16: error: array cap can not be negative |
| 6 | 1 | _ = []int{len: -1} |
| 7 | 2 | _ = []int{cap: -1} |
| 8 | | ~~ |
| 9 |