blob: 2e5a97f1f275b1081383d4525f77ce30b55ca610 [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] empty disjunction
}
}