blob: b0bf47e0e95b43921f1a1853a0f43710e4dac82e [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: continue recursive closing for optionals
#evalFull
-- in.cue --
#S: {
[string]: {a: int}
}
a: #S & {
v: {b: int}
}
-- out/def --
#S: {
[string]: {
a: int
}
}
a: #S & {
v: {
b: int
}
}
-- out/legacy-debug --
<0>{#S: <1>{[]: <2>(_: string)-><3>C{a: int}, }, a: <4>{[]: <5>(_: string)-><6>C{a: int}, v: _|_(int:field "b" not allowed in closed struct)}}
-- out/compile --
--- in.cue
{
#S: {
[string]: {
a: int
}
}
a: (〈0;#S & {
v: {
b: int
}
})
}