github.com/solo-io/cue@v0.4.7/cue/testdata/export/032.txtar (about)

     1  # DO NOT EDIT; generated by go run testdata/gen.go
     2  #
     3  -- in.cue --
     4  {
     5  	[string]: _
     6  	foo: 3
     7  }
     8  -- out/def --
     9  foo: 3
    10  ...
    11  -- out/export --
    12  foo: 3
    13  -- out/yaml --
    14  foo: 3
    15  -- out/json --
    16  {"foo":3}
    17  -- out/compile --
    18  --- in.cue
    19  {
    20    {
    21      [string]: _
    22      foo: 3
    23    }
    24  }
    25  -- out/eval --
    26  (struct){
    27    foo: (int){ 3 }
    28  }