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