blob: 44f70a7b9f21bb340f4abb4068e0b386a61d5495 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
-- in.cue --
{a: {b: 2.0, s: "abc"}, b: a.b, c: a.c, d: a["d"], e: a.t[2:3]}
-- out/def --
a: {
b: 2.0
s: "abc"
}
b: 2.0
c: a.c
d: a["d"]
e: a.t[2:3]