v2 / vlib / v / tests / options / option_indexexpr_eq_test.v
7 lines · 6 sloc · 125 bytes · bc7a844a64dee290855b603297918e72d3cb0ecc
Raw
1fn test_main() {
2 x := []?int{len: 5, init: 1}
3 assert x[0] == x[1]
4
5 y := []?int{len: 4, init: 2}
6 assert !(x[0] == y[1])
7}
8