aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/noinline_fn_cc_inline.zig
blob: eee97e683be1408c16bca16c6fb789bf9bc74d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
noinline fn foo() callconv(.@"inline") void {}

comptime {
    _ = foo;
}

// error
// backend=stage2
// target=native
//
// :1:29: error: 'noinline' function cannot have calling convention 'inline'