github.com/solo-io/cue@v0.4.7/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 --
    26  (struct){
    27    $type: (int){ 3 }
    28    _: (int){ int }
    29    "_foo": (int){ int }
    30    _bar: (int){ int }
    31  }