✓
Passing This code compiles and runs correctly.
Code
// Test: Void event chaining with nested continuations
// When chaining void -> event with branches, should parse nested continuations correctly
// Pattern: ~void-event() |> branching-event()
// | branch1 |> _
// | branch2 |> _
~tor void-event {}
~tor branching-event {}
// MUST_ERROR: branching-event is declared void (no branches), so `| error` is a
// branch handler on an event that has no branches — category error.
~void-event() |> branching-event()
| error |> _
Must fail at runtime:
Program must error when executed.
Flows
flow ~void-event click a branch to expand · @labels scroll to their anchor
void-event