blob: 8d3cd834cc3f4bfa2466da3ab0a63877c3b3e66e [file] [log] [blame]
! cue vet -c file.cue
cmp stderr expect-stderr
-- expect-stderr --
incomplete value X.y in interpolation:
./file.cue:16:3
./file.cue:3:5
-- file.cue --
X :: {
x: string
y: string
z: string
}
X :: {
x: "x"
z: "z"
}
"""
hello
world
\(X.x)
\(X.y)
\(X.z)
"""