blob: d7fe14a72bf6c760bba1cdaa2fc32f154cb8e9b4 [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
}
}