# DO NOT EDIT; generated by go run testdata/gen.go | |
# | |
#name: don't bind to string labels | |
#evalFull | |
-- in.cue -- | |
x: 1 | |
y: { | |
"x": 2 | |
z: x | |
} | |
-- out/def -- | |
x: 1 | |
y: { | |
x: 2 | |
z: 1 | |
} | |
-- out/export -- | |
x: 1 | |
y: { | |
x: 2 | |
z: 1 | |
} | |
-- out/yaml -- | |
x: 1 | |
y: | |
x: 2 | |
z: 1 | |
-- out/json -- | |
{"x":1,"y":{"x":2,"z":1}} | |
-- out/legacy-debug -- | |
<0>{x: 1, y: <1>{x: 2, z: 1}} |