✓
Passing This code compiles and runs correctly.
Code
// ============================================================================
// VERIFIED REGRESSION TEST - DO NOT MODIFY WITHOUT DISCUSSION
// ============================================================================
// Test 004: Multiple flows should all execute in order
const std = @import("std");
~tor first {}
~tor second {}
~proc first|zig {
std.debug.print("First\n", .{});
}
~proc second|zig {
std.debug.print("Second\n", .{});
}
// Both flows should execute
~first()
~second()Actual
First
Second
Expected output
First
SecondFlows
flow ~first click a branch to expand · @labels scroll to their anchor
first
flow ~second click a branch to expand · @labels scroll to their anchor
second
Test Configuration
MUST_RUN