blob: cb30238755db156ac680050fb5cdba4ca4abd552 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
raw: true
eval: true
-- in.cue --
{
b: {
idx: a[str]
str: string
}
b: a: b: 4
a: b: 3
}
-- out/def --
A = a
b: {
idx: A[str]
a: {
b: 4
}
str: string
}
a: {
b: 3
}