blob: d201ad7bddef2f4f1aefa67ebfaa33ad33c69e2e [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
-- in.cue --
{
$type: 3
"_": int
"_foo": int
_bar: int
}
-- out/def --
$type: 3
"_": int
"_foo": int
_bar: int
-- out/compile --
--- in.cue
{
{
$type: 3
"_": int
"_foo": int
_bar: int
}
}
-- out/eval --
(struct){
$type: (int){ 3 }
"_": (int){ int }
"_foo": (int){ int }
_bar: (int){ int }
}