interface hello_interface_optional { in void a(); out void b(); behaviour { bool c = false; [c] on a: b; [!c] on a: {} on optional: {c = !c; b;} } }