blob: 2a8b9ebacf7f1e7eaf1868e2f9617e070aa576e3 [file] [log] [blame]
#[link(name = "foo")]
extern "C" {
#[link_ordinal()]
//~^ ERROR malformed `link_ordinal` attribute input
//~| NOTE expected a single argument
fn foo();
#[link_ordinal()]
//~^ ERROR malformed `link_ordinal` attribute input
//~| NOTE expected a single argument
static mut imported_variable: i32;
}
fn main() {}