// 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::any_symbol_contains; | |
fn main() { | |
rustc().opt_level("3").emit("obj").input("used.rs").run(); | |
assert!(any_symbol_contains("used.o", &["FOO"])); | |
} |