✓
Passing This code compiles and runs correctly.
Code
// Event and host proc declaration without a flow. The proc is never
// invoked, so the program compiles and produces no output.
const std = @import("std");
~tor hello {}
~proc hello|zig {
std.debug.print("Event executed\n", .{});
}
Test Configuration
MUST_RUN