Sign in
cue
/
cue
/
refs/tags/v0.2.2
/
.
/
cmd
/
cue
/
cmd
/
testdata
/
script
/
issue304.txt
blob: b9c705a2b352ba1c8c9d941332ee66bd8998a9ff [
file
] [
log
] [
blame
]
cue def -e '#Foo' x.cue
cmp stdout expect-stdout
-- expect-stdout --
close({
x: int
body?: close({
a: int
b?: string
})
})
-- x.cue --
package example
#Foo: {
x: int
body?: {
a: int
b?: string
}
}