blob: 87373f563d0907871f33e4b1c38c77384654fd5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ build-fail
//@ compile-flags: --crate-type rlib
#[link(name = "bar.lib", kind = "static")]
extern { } //~ WARN `extern` declarations without an explicit ABI are deprecated
//~| HELP explicitly specify the "C" ABI
pub fn main() { }
//~? ERROR could not find native static library `bar.lib`
//~? HELP only provide the library name `bar`, not the full filename
|