github.com/solo-io/cue@v0.4.7/cue/testdata/fulleval/054_issue312.txtar (about) 1 #name: issue312 2 #evalFull 3 -- in.cue -- 4 y: *1 | {a: 2} 5 for x in [1] {y} 6 -- out/def -- 7 y: *1 | { 8 a: 2 9 } 10 a: 2 11 -- out/export -- 12 y: 1 13 a: 2 14 -- out/yaml -- 15 y: 1 16 a: 2 17 -- out/json -- 18 {"y":1,"a":2} 19 -- out/legacy-debug -- 20 <0>{y: 1, a: 2} 21 -- out/compile -- 22 --- in.cue 23 { 24 y: (*1|{ 25 a: 2 26 }) 27 for _, x in [ 28 1, 29 ] { 30 ć2;yć 31 } 32 } 33 -- out/eval -- 34 (struct){ 35 y: ((int|struct)){ |(*(int){ 1 }, (struct){ 36 a: (int){ 2 } 37 }) } 38 a: (int){ 2 } 39 }