cuelang.org/go@v0.13.0/cue/testdata/export/004.txtar (about) 1 -- in.cue -- 2 { 3 $type: 3 4 "_": int 5 "_foo": int 6 _bar: int 7 } 8 -- out/def -- 9 $type: 3 10 "_": int 11 "_foo": int 12 _bar: int 13 -- out/compile -- 14 --- in.cue 15 { 16 { 17 $type: 3 18 "_": int 19 "_foo": int 20 _bar: int 21 } 22 } 23 -- out/eval/stats -- 24 Leaks: 0 25 Freed: 5 26 Reused: 3 27 Allocs: 2 28 Retain: 0 29 30 Unifications: 5 31 Conjuncts: 6 32 Disjuncts: 5 33 -- out/eval -- 34 (struct){ 35 $type: (int){ 3 } 36 "_": (int){ int } 37 "_foo": (int){ int } 38 _bar: (int){ int } 39 }