10 lines
147 B
Rust
10 lines
147 B
Rust
//@ build-pass
|
|
|
|
// Supported since C23
|
|
// https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2975.pdf
|
|
extern "C" {
|
|
fn foo(...);
|
|
}
|
|
|
|
fn main() {}
|