blob: de12aa6e90fbc3e5847f04dbda3dbc0245700d2b [file] [log] [blame]
-- in.cue --
import "struct"
v: {a: struct.MaxFields(2) & {}}.a
-- out/eval --
(struct){
v: (struct){
}
}
-- out/compile --
--- in.cue
{
v: {
a: (〈import;struct〉.MaxFields(2) & {})
}.a
}