blob: 75187981d1af9424efe3e4fd7fa2f93fb6d3b4be [file] [log] [blame]
-- in.cue --
root: {
a: {
$id: "failure"
val: "foo"
out: string
}
b: {
$id: "valToOut"
$after: a
val: "bar"
out: string
}
}
-- out/run/errors --
error: task failed: failure
-- out/run/t0 --
graph TD
t0("root.a [Ready]")
t1("root.b [Waiting]")
t1-->t0