Sign in
cue
/
cue
/
d5041a1df187609d00a1ba846d06a586eaa1f503
/
.
/
cmd
/
cue
/
cmd
/
testdata
/
script
/
issue304.txt
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
}
}