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