blob: 5b92dd7eaedf79a9dc1436d9e1a57b661dbd2923 [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 }
}