interface functionEmptyElse { in void ia(); behaviour { on ia: {} void fn() { if (true) {} else { // Intentionally left empty to satisfy coding standard dogma. } } } }