blob: a4a9787a3dea0eb0070bcba615d757da86815338 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: detect conflicting value
#evalFull
-- in.cue --
a: 8000.9
a: 7080 | int
-- out/def --
a: _|_ // conflicting values 8000.9 and int (mismatched types float and int)
-- out/legacy-debug --
<0>{a: _|_((8000.9 & (int | int)):conflicting values 8000.9 and int (mismatched types float and int))}
-- out/compile --
--- in.cue
{
a: 8000.9
a: (7080|int)
}
-- out/eval --
(struct){
a: (_|_){
// [incomplete] a: empty disjunction
}
}