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