2022-10-12 22:52:31 -04:00
|
|
|
//@ build-fail
|
|
|
|
|
//@ compile-flags: --crate-type rlib
|
|
|
|
|
|
|
|
|
|
#[link(name = "bar.lib", kind = "static")]
|
2025-04-08 05:31:24 +03:00
|
|
|
extern { } //~ WARN `extern` declarations without an explicit ABI are deprecated
|
2025-04-12 22:40:34 +03:00
|
|
|
//~| HELP explicitly specify the "C" ABI
|
2022-10-12 22:52:31 -04:00
|
|
|
|
|
|
|
|
pub fn main() { }
|
2025-03-29 02:41:32 +03:00
|
|
|
|
|
|
|
|
//~? ERROR could not find native static library `bar.lib`
|
2025-04-12 22:40:34 +03:00
|
|
|
//~? HELP only provide the library name `bar`, not the full filename
|