Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
non-extern_function_with_var_args.zig
pretty
plain
permalink
blame
history
•
8 lines
•
132 B
1
fn foo(args: ...) void {}
2
export fn entry() void {
3
foo();
4
}
5
6
// error
7
//
8
// :1:14: error: expected type expression, found '...'