2024-06-29 05:02:44 -05:00
|
|
|
// This is a non-regression test for issue #127052 where unreferenced `#[used]` statics in the
|
|
|
|
// binary crate would be marked as "exported", but not be present in the binary, causing linking
|
|
|
|
// errors with the MSVC linker.
|
2024-06-28 15:59:33 -05:00
|
|
|
|
|
|
|
//@ build-pass: needs linking
|
|
|
|
|
|
|
|
#[used]
|
|
|
|
static FOO: u32 = 0;
|
2024-06-29 05:02:44 -05:00
|
|
|
|
2024-06-28 15:59:33 -05:00
|
|
|
fn main() {}
|