blob: 92f2d61956408c590317a800429fe852bfff9af8 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: correct error messages
#evalPartial
-- in.cue --
a: "a" & 1
-- out/def --
a: _|_ // conflicting values "a" and 1 (mismatched types string and int)
-- out/legacy-debug --
<0>{a: _|_(("a" & 1):conflicting values "a" and 1 (mismatched types string and int))}
-- out/compile --
--- in.cue
{
a: ("a" & 1)
}
-- out/eval --
(_|_){
// [eval]
a: (_|_){
// [eval] invalid value *adt.Num (mismatched types int and string)
}
}