2022-10-12 22:52:31 -04:00
|
|
|
//@ 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")]
|
2025-03-29 02:41:32 +03:00
|
|
|
extern { } //~ WARN extern declarations without an explicit ABI are deprecated
|
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 `libfoo.a`
|