v2 / vlib / v / tests / index_on_loop_test.v
7 lines · 7 sloc · 92 bytes · b76b1ee76328ce62a6a7e149f89b83ba786ad603
Raw
1fn test_main() {
2 arr := ['hello', 'world']
3 for {
4 arr[69] or { break }
5 }
6 assert true
7}
8