cuelang.org/go@v0.10.1/cue/testdata/export/004.txtar (about)

     1  # DO NOT EDIT; generated by go run testdata/gen.go
     2  #
     3  -- in.cue --
     4  {
     5  	$type:  3
     6  	"_":    int
     7  	"_foo": int
     8  	_bar:   int
     9  }
    10  -- out/def --
    11  $type:  3
    12  "_":    int
    13  "_foo": int
    14  _bar:   int
    15  -- out/compile --
    16  --- in.cue
    17  {
    18    {
    19      $type: 3
    20      "_": int
    21      "_foo": int
    22      _bar: int
    23    }
    24  }
    25  -- out/eval/stats --
    26  Leaks:  0
    27  Freed:  5
    28  Reused: 3
    29  Allocs: 2
    30  Retain: 0
    31  
    32  Unifications: 5
    33  Conjuncts:    6
    34  Disjuncts:    5
    35  -- out/eval --
    36  (struct){
    37    $type: (int){ 3 }
    38    "_": (int){ int }
    39    "_foo": (int){ int }
    40    _bar: (int){ int }
    41  }