v2 / vlib / v / slow_tests / inout / panic_on_fixed_array_index.vv
4 lines · 4 sloc · 43 bytes · e8e1df6df9e0f8bb299f24e2993263466d309b25
Raw
1a := [1, 2]!
2println(a[0])
3i := 2
4_ = a[i]
5