blob: 32ecf7a8df080a008aa79b7bde8ebca94b7f746f [file] [log] [blame]
cue eval pkg.cue -H
cmp stdout expect-stdout
cue eval -H
cmp stdout expect-stdout
cue eval file.cue -H
cmp stdout expect-stdout
-- pkg.cue --
package pkg
_top: 1
a: _h0: int
#foo: {
_h1: string
}
{
_h2: string
}
-- file.cue --
_top: 1
a: _h0: int
#foo: {
_h1: string
}
{
_h2: string
}
-- expect-stdout --
_top: 1
a: {
_h0: int
}
_h2: string
#foo: {
_h1: string
}