blob: 378a97e549237755e8ea126d08fb1935ba74d92a [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
raw: true
-- 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) }
}