✓
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] tor unimplemented { x: i32 }
// Try to invoke it - THIS SHOULD BE A COMPILER ERROR
~unimplemented(x: 42)
Must fail at runtime:
Program must error when executed.
Flows
flow ~unimplemented click a branch to expand · @labels scroll to their anchor
unimplemented (x: 42)
Test Configuration
Expected Error:
no implementation