v2 / vlib / v / tests / builtin_arrays / fixed_array_literal_index_test.v
7 lines · 6 sloc · 133 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_fixed_array_literal_index() {
2 println([1]int{}[0])
3 assert [1]int{}[0] == 0
4
5 println([1, 2]![1])
6 assert [1, 2]![1] == 2
7}
8