v2 / vlib / v / fmt / tests / if_keep.vv
11 lines · 10 sloc · 195 bytes · 7f7f9dca6b09e5e433c758681dd3322610bf6f83
Raw
1fn void_type_array_cond() {
2 if fg == [] {
3 stack.ctx.reset_color()
4 }
5}
6
7fn multi_dimensional_array_cond() {
8 if t.data == [][]string{} {
9 return error('Table.data should not be empty.')
10 }
11}
12