blob: 8cae7848e47eade0667d7f4bbf57225571278c42 [file] [log] [blame]
-- in.cue --
#A : _
#N: #A & {
f: j: {
n: "hi"
}
}
l: #N
-- out/eval --
(struct){
#A: (_){ _ }
#N: (#struct){
f: (#struct){
j: (#struct){
n: (string){ "hi" }
}
}
}
l: (#struct){
f: (#struct){
j: (#struct){
n: (string){ "hi" }
}
}
}
}
-- out/compile --
--- in.cue
{
#A: _
#N: (怈0;#A怉 & {
f: {
j: {
n: "hi"
}
}
})
l: 怈0;#N怉
}