blob: ad96a094c1beb49583055566c31662fb44e71125 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
-- in.cue --
{
a: >=0 & <=10 & !=1
}
-- out/def --
a: >=0 & <=10 & !=1
-- out/compile --
--- in.cue
{
{
a: ((>=0 & <=10) & !=1)
}
}
-- out/eval --
(struct){
a: (number){ &(>=0, <=10, !=1) }
}