blob: 7ed106e4ab4312f5788f1b00a2e2d30703695e8c [file] [log] [blame] [edit]
//@ build-fail
//@ compile-flags: --crate-type rlib
//@ error-pattern: could not find native static library `bar.lib`
//@ error-pattern: only provide the library name `bar`, not the full filename
#[link(name = "bar.lib", kind = "static")]
extern { }
pub fn main() { }