blob: 703940b725b000450dd8700c4a7ef88299e446fd [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)
}