blob: ee0c8c63a2faa61c1d34ac1103b7e8827a9ff984 [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:
incompatible values 4 and 3
Result:
(_|_){
// [eval]
a: (_|_){
// [eval]
0: (_|_){
// [eval] incompatible values 4 and 3
}
}
}