blob: cc701ff29682970c9179916fc828a2ad0ed7f23f [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: definitions with disjunctions recurisive
#evalPartial
-- in.cue --
Foo :: {
x: {
field: int
{a: 1} |
{b: 2}
}
x: c: 3
}
-- out/def --
Foo :: {
x: {
field: int
a: 1
c: 3
} | {
field: int
b: 2
c: 3
}
}
-- out/export --
-- out/yaml --
{}
-- out/json --
{}
-- out/legacy-debug --
<0>{Foo :: <1>C{x: (<2>C{field: int, a: 1, c: 3} | <3>C{field: int, b: 2, c: 3})}}