blob: 07c94c014db69024fb46f89d695542233431f8a1 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
-- in.cue --
{a: [ 3 & 4]}
-- out/def --
a: [_|_, // conflicting values 3 and 4
]
-- out/compile --
--- in.cue
{
{
a: [
(3 & 4),
]
}
}
-- out/eval --
Errors:
a.0: incompatible values 4 and 3
Result:
(_|_){
// [eval]
a: (_|_){
// [eval]
0: (_|_){
// [eval] a.0: incompatible values 4 and 3
}
}
}