aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/recursive_inline_fn.zig
blob: 2308bbdbc7ebd534baf17fedbc2264a9770c9db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
inline fn foo(x: i32) i32 {
    if (x <= 0) {
        return 0;
    } else {
        return x * 2 + foo(x - 1);
    }
}

pub export fn entry() void {
    var x: i32 = 4;
    _ = foo(x) == 20;
}

// error
// backend=stage2
// target=native
//
// :5:27: error: inline call is recursive