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