2023-01-26 08:10:13 -06:00
|
|
|
// gate-test-packed_bundled_libs
|
|
|
|
|
|
|
|
// ignore-wasm32-bare
|
|
|
|
// compile-flags: --crate-type rlib
|
|
|
|
// error-pattern: link modifiers combination `+bundle,+whole-archive` is unstable when generating rlibs
|
2021-08-20 15:25:39 -05:00
|
|
|
// build-fail
|
|
|
|
|
2023-01-26 08:10:13 -06:00
|
|
|
#[link(name = "rust_test_helpers", kind = "static", modifiers = "+bundle,+whole-archive")]
|
|
|
|
extern "C" {}
|
2021-08-20 15:25:39 -05:00
|
|
|
|
2023-01-26 08:10:13 -06:00
|
|
|
fn main() {}
|