mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
280 B
Rust
12 lines
280 B
Rust
#[link(name = "foo")]
|
|
extern "C" {
|
|
#[link_ordinal()]
|
|
//~^ ERROR incorrect number of arguments to `#[link_ordinal]`
|
|
fn foo();
|
|
#[link_ordinal()]
|
|
//~^ ERROR incorrect number of arguments to `#[link_ordinal]`
|
|
static mut imported_variable: i32;
|
|
}
|
|
|
|
fn main() {}
|