mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-03 13:29:08 +00:00
16 lines
428 B
Rust
16 lines
428 B
Rust
#[link(name = "foo")]
|
|
extern "C" {
|
|
#[link_ordinal()]
|
|
//~^ ERROR malformed `link_ordinal` attribute input
|
|
//~| NOTE expected a single argument
|
|
//~| NOTE for more information, visit
|
|
fn foo();
|
|
#[link_ordinal()]
|
|
//~^ ERROR malformed `link_ordinal` attribute input
|
|
//~| NOTE expected a single argument
|
|
//~| NOTE for more information, visit
|
|
static mut imported_variable: i32;
|
|
}
|
|
|
|
fn main() {}
|