blob: 4ccfa086bde6350abab9a6dcd205394a0baaccc3 [file] [log] [blame]
//@ build-fail
//@ compile-flags: --crate-type rlib
//@ error-pattern: only provide the library name `foo`, not the full filename
#[link(name = "libfoo.a", kind = "static")]
extern { } //~ WARN extern declarations without an explicit ABI are deprecated
pub fn main() { }
//~? ERROR could not find native static library `libfoo.a`