blob: 009264500fc193be68ed2cc2300354979ac43fb6 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: dont 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}}
-- out/compile --
--- in.cue
{
x: 1
y: {
x: 2
z: 1;x
}
}