]> git.lizzy.rs Git - rust.git/blob - src/test/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / native-library-link-flags / mix-bundle-and-whole-archive-link-attr.rs
1 // compile-flags: -Zunstable-options --crate-type rlib
2 // build-fail
3 // error-pattern: the linking modifiers `+bundle` and `+whole-archive` are not compatible with each other when generating rlibs
4
5 #[link(name = "mylib", kind = "static", modifiers = "+bundle,+whole-archive")]
6 extern "C" { }
7
8 fn main() { }