blob: 7bc334e510ee2956fc3b9469225159b4da2ee7e4 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: delayed constraint failure
#evalPartial
-- in.cue --
a: b - 100
b: a + 110
b: 200
x: 100
x: x + 1
-- out/def --
x: _|_ // conflicting values 100 and 101
a: _|_ // conflicting values 210 and 200
b: _|_ // conflicting values 210 and 200
-- out/legacy-debug --
<0>{x: _|_((100 & 101):conflicting values 100 and 101), a: _|_((210 & 200):conflicting values 210 and 200), b: _|_((210 & 200):conflicting values 210 and 200)}