cuelang.org/go@v0.13.0/cue/testdata/definitions/root3.txtar (about)

     1  -- in.cue --
     2  x: _
     3  #D: b: x
     4  #D & { b: _ }
     5  -- out/eval/stats --
     6  Leaks:  0
     7  Freed:  5
     8  Reused: 2
     9  Allocs: 3
    10  Retain: 1
    11  
    12  Unifications: 5
    13  Conjuncts:    11
    14  Disjuncts:    6
    15  -- out/eval --
    16  (#struct){
    17    x: (_){ _ }
    18    #D: (#struct){
    19      b: (_){ _ }
    20    }
    21    b: (_){ _ }
    22  }
    23  -- out/compile --
    24  --- in.cue
    25  {
    26    x: _
    27    #D: {
    28      b: 〈1;x〉
    29    }
    30    (〈0;#D〉 & {
    31      b: _
    32    })
    33  }