github.com/solo-io/cue@v0.4.7/cue/testdata/references/embed_self.txtar (about) 1 -- in.cue -- 2 Foo: { 3 } 4 5 Foo 6 -- out/eval -- 7 (struct){ 8 Foo: (struct){ 9 } 10 } 11 -- out/compile -- 12 --- in.cue 13 { 14 Foo: {} 15 〈0;Foo〉 16 }