mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
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() {}
|