blob: 8260c5d518b9e9dbb0cbf641a87a655ac05302e4 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: disjunctions of lists
#evalFull
-- 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], l1: ["a","b"], l2: ["c","d"]}