aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/invalid_extern_function_call.zig
blob: f9ed51439cf5bb209edebab78ff10aa67bde3f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const x = @extern(*const fn() callconv(.C) void, .{ .name = "foo" });

export fn entry0() void {
    comptime x();
}

export fn entry1() void {
    @call(.always_inline, x, .{});
}

// error
// backend=stage2
// target=native
//
// :4:15: error: comptime call of extern function pointer
// :8:5: error: inline call of extern function pointer