blob: 7001856a4ed8126adc7b578cdaa321f09e54962c [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 --
(_|_){
// [eval]
a: (_|_){
// [eval]
0: (_|_){
// [eval] incompatible values *adt.Num and *adt.Num
}
}
}