Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
noinline_fn_cc_inline.zig
pretty
plain
permalink
blame
history
•
9 lines
•
164 B
1
noinline fn foo() callconv(.@"inline") void {}
2
3
comptime {
4
_ = foo;
5
}
6
7
// error
8
//
9
// :1:29: error: 'noinline' function cannot have calling convention 'inline'