blob: ca1808527513b1991ad8a74eaad1cf9fe272903a [file] [log] [blame]
-- in.cue --
c: #R & {
w: [{}, {b: int}]
}
#R: {
w: [{}, ...]
}
-- out/eval --
(struct){
c: (#struct){
w: (#list){
0: (#struct){
}
1: (struct){
b: (int){ int }
}
}
}
#R: (#struct){
w: (list){
0: (#struct){
}
}
}
}
-- out/compile --
--- in.cue
{
c: (〈0;#R & {
w: [
{},
{
b: int
},
]
})
#R: {
w: [
{},
...,
]
}
}