005 impl no implementation

✓ Passing This code compiles and runs correctly.

Code

// Test 430_005: Abstract with No Implementation (Error Case)
// When an abstract event has NEITHER default NOR override,
// invoking it should be a compiler error.

// Define abstract event with NO implementation at all
~[abstract] event unimplemented { x: i32 }
| done {}

// Try to invoke it - THIS SHOULD BE A COMPILER ERROR
~unimplemented(x: 42)
| done |> _
input.kz

Test Configuration

MUST_FAIL