2023-01-26 17:10:13 +03: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 16:25:39 -04:00
|
|
|
// build-fail
|
|
|
|
|
2023-01-26 17:10:13 +03:00
|
|
|
#[link(name = "rust_test_helpers", kind = "static", modifiers = "+bundle,+whole-archive")]
|
|
|
|
extern "C" {}
|
2021-08-20 16:25:39 -04:00
|
|
|
|
2023-01-26 17:10:13 +03:00
|
|
|
fn main() {}
|