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

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