cuelang.org/go@v0.10.1/cue/testdata/export/005.txtar (about) 1 # DO NOT EDIT; generated by go run testdata/gen.go 2 # 3 -- in.cue -- 4 {a: 1, b: a + 2, c: null, d: true, e: _, f: string} 5 -- out/def -- 6 a: 1 7 b: 3 8 c: null 9 d: true 10 e: _ 11 f: string 12 -- out/compile -- 13 --- in.cue 14 { 15 { 16 a: 1 17 b: (ć0;ać + 2) 18 c: null 19 d: true 20 e: _ 21 f: string 22 } 23 } 24 -- out/eval/stats -- 25 Leaks: 0 26 Freed: 7 27 Reused: 5 28 Allocs: 2 29 Retain: 0 30 31 Unifications: 7 32 Conjuncts: 8 33 Disjuncts: 7 34 -- out/eval -- 35 (struct){ 36 a: (int){ 1 } 37 b: (int){ 3 } 38 c: (null){ null } 39 d: (bool){ true } 40 e: (_){ _ } 41 f: (string){ string } 42 }