We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This code works:
extern "C" { fn foo(x: u8, ...); }
While this one doesn't:
extern "C" fn foo(x: u8, ...); // error: only foreign functions are allowed to be variadic
I don't think this is the expected behavior.