Sign in
cue
/
cue
/
refs/tags/v0.3.0-alpha2
/
.
/
cmd
/
cue
/
cmd
/
testdata
/
script
/
issue304.txt
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
}
}