blob: 844339dbf36d9a5d6b153c27a56fabc2f528c109 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
-- in.cue --
{
[string]: _
foo: 3
}
-- out/def --
foo: 3
...
-- out/export --
foo: 3
-- out/yaml --
foo: 3
-- out/json --
{"foo":3}
-- out/compile --
--- in.cue
{
{
[string]: _
foo: 3
}
}
-- out/eval --
(struct){
foo: (int){ 3 }
}