rust/tests/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs
2023-01-11 09:32:08 +00:00

9 lines
307 B
Rust

// compile-flags: -Zunstable-options --crate-type rlib
// build-fail
// error-pattern: the linking modifiers `+bundle` and `+whole-archive` are not compatible with each other when generating rlibs
#[link(name = "mylib", kind = "static", modifiers = "+bundle,+whole-archive")]
extern "C" { }
fn main() { }