blob: 74a6fd6600b8eefc78bedd9c3fc85909a25f4a0f [file] [log] [blame]
//@ check-fail
#![feature(linkage)]
extern "C" {
#[linkage = "foo"]
static foo: *const i32;
//~^^ ERROR: malformed `linkage` attribute input [E0539]
}
fn main() {
println!("{:?}", unsafe { foo });
}