mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 10:45:18 +00:00
f784fa7bd9
Done by removing all uses of `#![no_core]`, and the reverting the ones that failed. More involved ones are in a later commit.
7 lines
257 B
Rust
7 lines
257 B
Rust
extern "C" {
|
|
// @is "$.index[*][?(@.name == 'not_variadic')].inner.function.decl.c_variadic" false
|
|
pub fn not_variadic(_: i32);
|
|
// @is "$.index[*][?(@.name == 'variadic')].inner.function.decl.c_variadic" true
|
|
pub fn variadic(_: i32, ...);
|
|
}
|