blob: bafa8b8f7e396abfe71dfcf8adef90898641180c [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: disjunctions of lists
#evalPartial
-- in.cue --
l: [ int, int] | [ string, string]
l1: [ "a", "b"]
l2: l & [ "c", "d"]
-- out/def --
l: [int, int] | [string, string]
l1: ["a", "b"]
l2: ["c", "d"]
-- out/legacy-debug --
<0>{l: ([int,int] | [string,string]), l1: ["a","b"], l2: ["c","d"]}
-- out/compile --
--- in.cue
{
l: ([
int,
int,
]|[
string,
string,
])
l1: [
"a",
"b",
]
l2: (〈0;l & [
"c",
"d",
])
}