blob: ae27dd520e9f8f694f6ff71ed1a75ba3c71265c0 [file] [log] [blame]
#![crate_type = "rlib"]
#![feature(linkage)]
pub fn foo<T>() -> *const() {
extern {
#[linkage = "extern_weak"]
static FOO: *const();
}
unsafe { FOO }
}