blob: 9d98a878a9b9c914ed931cbb3a3b0f4718371781 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: issue312
#evalFull
-- in.cue --
y: *1 | {a: 2}
for x in [1] {y}
-- out/def --
y: *1 | {
a: 2
}
a: 2
-- out/export --
y: 1
a: 2
-- out/yaml --
y: 1
a: 2
-- out/json --
{"y":1,"a":2}
-- out/legacy-debug --
<0>{y: 1, a: 2}