blob: ef464576b7b7dff943428a1132ca5815ed96c7a5 [file] [log] [blame]
cue def -e '#Foo' x.cue
cmp stdout expect-stdout
-- expect-stdout --
_#def
_#def: {
x: int
body?: {
a: int
b?: string
}
}
-- x.cue --
package example
#Foo: {
x: int
body?: {
a: int
b?: string
}
}