blob: 14a1c360f054471b1c118039b1d82574f9b44e66 [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 }
}