cuelang.org/go@v0.10.1/cue/testdata/references/embed_self.txtar (about)

     1  -- in.cue --
     2  Foo: {
     3  }
     4  
     5  Foo
     6  -- out/eval/stats --
     7  Leaks:  0
     8  Freed:  2
     9  Reused: 0
    10  Allocs: 2
    11  Retain: 1
    12  
    13  Unifications: 2
    14  Conjuncts:    4
    15  Disjuncts:    3
    16  -- out/eval --
    17  (struct){
    18    Foo: (struct){
    19    }
    20  }
    21  -- out/compile --
    22  --- in.cue
    23  {
    24    Foo: {}
    25    〈0;Foo〉
    26  }