blob: a078cafe5ab9af9623d2b7361407419f11b1a3d3 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: default disambiguation and elimination
#evalFull
-- in.cue --
a: *1 | int
b: *3 | int
c: a & b
d: b & a
e: *1 | *1
-- out/def --
a: *1 | int
b: *3 | int
c: a & b
d: b & a
e: 1
-- out/legacy-debug --
<0>{a: 1, b: 3, c: int, d: int, e: 1}