# DO NOT EDIT; generated by go run testdata/gen.go | |
# | |
-- in.cue -- | |
{a: 1, b: a + 2, c: null, d: true, e: _, f: string} | |
-- out/def -- | |
a: 1 | |
b: 3 | |
c: null | |
d: true | |
e: _ | |
f: string | |
-- out/compile -- | |
--- in.cue | |
{ | |
{ | |
a: 1 | |
b: (〈0;a〉 + 2) | |
c: null | |
d: true | |
e: _ | |
f: string | |
} | |
} | |
-- out/eval -- | |
(struct){ | |
a: (int){ 1 } | |
b: (int){ 3 } | |
c: (null){ null } | |
d: (bool){ true } | |
e: (_){ _ } | |
f: (string){ string } | |
} |