blob: 61c0009a34b536cd30369e4ad2d41c37744dd6f0 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: pick first
#bug: true
#evalFull
-- in.cue --
a: *5 | "a" | true
b: c: *{
a: 2
} | {
a: 3
}
-- out/def --
a: *5 | "a" | true
b: {
c: *{
a: 2
} | {
a: 3
}
}
-- out/export --
a: 5
b: {
c: *{
a: 2
} | {
a: 3
}
}
-- out/yaml --
-- out/json --
{"a":5,"b":{"c":{"a":2}}}
-- out/legacy-debug --
<0>{a: 5, b: <1>{c: <2>{a: 2}}}