cuelang.org/go@v0.10.1/cue/testdata/export/032.txtar (about) 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 -- 9 foo: 3 10 ... 11 -- out/export -- 12 foo: 3 13 -- out/yaml -- 14 foo: 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 -- 26 Leaks: 0 27 Freed: 2 28 Reused: 0 29 Allocs: 2 30 Retain: 0 31 32 Unifications: 2 33 Conjuncts: 4 34 Disjuncts: 2 35 -- out/eval -- 36 (struct){ 37 foo: (int){ 3 } 38 }