# DO NOT EDIT; generated by go run testdata/gen.go | |
# | |
#name: convert _ to top | |
#evalPartial | |
-- in.cue -- | |
a: {[_]: _} | |
-- out/def -- | |
a: { | |
... | |
} | |
-- out/export -- | |
a: {} | |
-- out/yaml -- | |
a: {} | |
-- out/json -- | |
{"a":{}} | |
-- out/legacy-debug -- | |
<0>{a: <1>{...}} | |
-- out/compile -- | |
--- in.cue | |
{ | |
a: { | |
[_]: _ | |
} | |
} | |
-- out/eval -- | |
(struct){ | |
a: (struct){ | |
} | |
} |