about summary refs log tree commit diff
path: root/tests/ui/link-native-libs/suggest-libname-only-1.rs
blob: 8699e4819e6237c22e56bfc11a01cc3cc13d2d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ build-fail
//@ compile-flags: --crate-type rlib

#[link(name = "libfoo.a", 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 `libfoo.a`
//~? HELP only provide the library name `foo`, not the full filename