v2 / vlib / v / tests / skip_unused / ident_or_block.vv
12 lines · 11 sloc · 180 bytes · cd152169e8792d07ce8ef5403f397f2dc4721610
Raw
1pub struct Row {
2pub mut:
3 vals []?string
4}
5
6mut set := map[string]bool{}
7rows := []Row{}
8for row in rows {
9 val := row.vals[0]
10 set[val or { 'invariant' }] = true
11}
12dump(set.len)
13