blob: 1067bc4043544a5d1dc57dc6815e5dcb773bac34 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: optional field resolves to incomplete
#evalPartial
-- in.cue --
r: {
a?: 3
b: a
c: r["a"]
}
-- out/def --
r: {
a?: 3
b: a
c: r["a"]
}
-- out/legacy-debug --
<0>{r: <1>{a?: 3, b: <2>.a, c: <3>.r["a"]}}