blob: aefa15e509049d07fa5b1ca952230f15f67c7350 [file] [log] [blame]
-- in.cue --
#A : _
#N: #A & {
_E: {
name: "hello"
}
}
l: #N
-- out/eval --
(struct){
#A: (_){ _ }
#N: (#struct){
_E: (#struct){
name: (string){ "hello" }
}
}
l: (#struct){
_E: (#struct){
name: (string){ "hello" }
}
}
}
-- out/compile --
--- in.cue
{
#A: _
#N: (怈0;#A怉 & {
_E: {
name: "hello"
}
})
l: 怈0;#N怉
}