github.com/solo-io/cue@v0.4.7/cue/testdata/cycle/cycle_with_bounds.txtar (about) 1 -- in.cue -- 2 #Value: int 3 4 foo: #Value 5 foo: != bar 6 bar: #Value 7 bar: != foo 8 9 bar: 0 10 foo: 1 11 -- out/compile -- 12 --- in.cue 13 { 14 #Value: int 15 foo: 〈0;#Value〉 16 foo: !=〈0;bar〉 17 bar: 〈0;#Value〉 18 bar: !=〈0;foo〉 19 bar: 0 20 foo: 1 21 } 22 -- out/eval -- 23 (struct){ 24 #Value: (int){ int } 25 foo: (int){ 1 } 26 bar: (int){ 0 } 27 }