summary refs log tree commit diff
path: root/tests/pracownia2/error/086_function_missing_return_ifelse_then_return.xi
blob: df596c59ef188a3b60c9d757c847c50f928e9008 (plain) (blame)
1
2
3
4
5
6
7
8
9
f(x:bool):int
{
    if (x) {
        return 0
    } else {
    }
}
//@PRACOWNIA
//@should_not_typecheck