1# DO NOT EDIT; generated by go run testdata/gen.go 2# 3-- in.cue -- 4{ 5 [string]: _ 6 foo: 3 7} 8-- out/def -- 9foo: 3 10... 11-- out/export -- 12foo: 3 13-- out/yaml -- 14foo: 3 15-- out/json -- 16{"foo":3} 17-- out/compile -- 18--- in.cue 19{ 20 { 21 [string]: _ 22 foo: 3 23 } 24} 25-- out/eval/stats -- 26Leaks: 0 27Freed: 2 28Reused: 0 29Allocs: 2 30Retain: 0 31 32Unifications: 2 33Conjuncts: 4 34Disjuncts: 2 35-- out/eval -- 36(struct){ 37 foo: (int){ 3 } 38}