blob: 83014dff4f82dacca2739015390b34b394079b85 [file] [log] [blame]
# 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){
}
}