cuelang.org/go@v0.13.0/cue/testdata/export/026.txtar (about) 1 raw: true 2 -- in.cue -- 3 { 4 if false { 5 {a: 1} | {b: 1} 6 } 7 } 8 -- out/def -- 9 10 -- out/export -- 11 12 -- out/yaml -- 13 {} 14 -- out/json -- 15 {} 16 -- out/compile -- 17 --- in.cue 18 { 19 { 20 if false { 21 ({ 22 a: 1 23 }|{ 24 b: 1 25 }) 26 } 27 } 28 } 29 -- out/eval/stats -- 30 Leaks: 0 31 Freed: 1 32 Reused: 0 33 Allocs: 1 34 Retain: 0 35 36 Unifications: 1 37 Conjuncts: 2 38 Disjuncts: 1 39 -- out/eval -- 40 (struct){ 41 }