// TEST: compilation_should_fail 'Функция должна возвращать значение: bar' include "../include/test_env.qdi"; void foo() of pass; end int bar(int x) of if x == 0 then foo(); else return x + 1; end end termination_status main() of put_int(bar(10)); return 0; end