mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
12 lines
376 B
Rust
12 lines
376 B
Rust
//@ 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
|