github.com/joomcode/cue@v0.4.4-0.20221111115225-539fe3512047/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  }