mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 07:08:14 +00:00
17 lines
612 B
Rust
17 lines
612 B
Rust
//@ needs-target-std
|
|
//@ ignore-wasm (`object` can't handle wasm object files)
|
|
|
|
// This test ensures that the compiler is keeping static variables, even if not referenced
|
|
// by another part of the program, in the output object file.
|
|
//
|
|
// It comes from #39987 which implements this RFC for the #[used] attribute:
|
|
// https://rust-lang.github.io/rfcs/2386-used.html
|
|
|
|
use run_make_support::rustc;
|
|
use run_make_support::symbols::object_contains_any_symbol_substring;
|
|
|
|
fn main() {
|
|
rustc().opt_level("3").emit("obj").input("used.rs").run();
|
|
assert!(object_contains_any_symbol_substring("used.o", &["FOO"]));
|
|
}
|