]> git.lizzy.rs Git - rust.git/blob - src/test/ui/native-library-link-flags/suggest-libname-only-2.rs
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / ui / native-library-link-flags / suggest-libname-only-2.rs
1 // build-fail
2 // compile-flags: --crate-type rlib
3 // error-pattern: could not find native static library `bar.lib`
4 // error-pattern: only provide the library name `bar`, not the full filename
5
6 #[link(name = "bar.lib", kind = "static")]
7 extern { }
8
9 pub fn main() { }