github.com/solo-io/cue@v0.4.7/cue/testdata/resolve/000_convert___to_top.txtar (about)

     1  # DO NOT EDIT; generated by go run testdata/gen.go
     2  #
     3  #name: convert _ to top
     4  #evalPartial
     5  -- in.cue --
     6  a: {[_]: _}
     7  -- out/def --
     8  a: {
     9  	...
    10  }
    11  -- out/export --
    12  a: {}
    13  -- out/yaml --
    14  a: {}
    15  -- out/json --
    16  {"a":{}}
    17  -- out/legacy-debug --
    18  <0>{a: <1>{...}}
    19  -- out/compile --
    20  --- in.cue
    21  {
    22    a: {
    23      [_]: _
    24    }
    25  }
    26  -- out/eval --
    27  (struct){
    28    a: (struct){
    29    }
    30  }