1-- in.cue -- 2import "struct" 3 4v: {a: struct.MaxFields(2) & {}}.a 5-- out/eval/stats -- 6Leaks: 2 7Freed: 2 8Reused: 0 9Allocs: 4 10Retain: 2 11 12Unifications: 4 13Conjuncts: 7 14Disjuncts: 4 15-- out/eval -- 16(struct){ 17 v: (struct){ 18 } 19} 20-- out/compile -- 21--- in.cue 22{ 23 v: { 24 a: (〈import;struct〉.MaxFields(2) & {}) 25 }.a 26}