✓
Passing This code compiles and runs correctly.
Code
// Test: Event call missing required parameter
// ACCEPTABLE: Backend Zig error "missing struct field: y"
// (We don't re-implement Zig's type system)
~event foo { x: i32, y: i32 }
~foo(x: 1)
Must fail at backend compile:
Code generation must reject the program.
Test Configuration
Expected Error:
missing struct field: y