blob: fe69537e009667463c627a3510ee4fa3fcb252a3 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
raw: true
-- in.cue --
{a: [1, 2], b: [ for k, v in a {v}]}
-- out/def --
a: [1, 2]
b: [1, 2]
-- out/export --
a: [1, 2]
b: [1, 2]
-- out/yaml --
a:
- 1
- 2
b:
- 1
- 2
-- out/json --
{"a":[1,2],"b":[1,2]}