blob: d2b69ed67ed39e5a31566973e32d9d89d96ab3d4 [file] [log] [blame]
-- in.cue --
t: #C
#C: {
if true {
p: _
}
}
t: p: "foo"
-- out/eval --
(struct){
t: (#struct){
p: (string){ "foo" }
}
#C: (#struct){
p: (_){ _ }
}
}
-- out/compile --
--- in.cue
{
t: 0;#C
#C: {
if true {
p: _
}
}
t: {
p: "foo"
}
}