# DO NOT EDIT; generated by go run testdata/gen.go | |
# | |
raw: true | |
-- in.cue -- | |
{a: >=0 & <=10, b: "Count: \(a) times"} | |
-- out/def -- | |
a: >=0 & <=10 | |
b: "Count: \(a) times" | |
-- out/compile -- | |
--- in.cue | |
{ | |
{ | |
a: (>=0 & <=10) | |
b: "Count: \(ć0;ać) times" | |
} | |
} | |
-- out/eval -- | |
(struct){ | |
a: (number){ &(>=0, <=10) } | |
b: (_|_){ | |
// [incomplete] b: invalid interpolation: non-concrete value >=0 & <=10 (type number): | |
// ./in.cue:1:20 | |
} | |
} |