blob: bdc2cffa5157eeca5a5939c185bdfeb15e90a4ed [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: resolutions in struct comprehension keys
#evalFull
-- in.cue --
a: {for _, b in ["c"] {"\(b+".")": "a"}}
-- out/def --
a: {
"c.": "a"
}
-- out/export --
a: {
"c.": "a"
}
-- out/yaml --
a:
c.: a
-- out/json --
{"a":{"c.":"a"}}
-- out/legacy-debug --
<0>{a: <1>{"c.": "a"}}