rustc/tests/run-make/strip/hello.rs
2025-01-11 15:57:26 +01:00

9 lines
143 B
Rust

fn main() {
hey_i_get_compiled();
}
#[inline(never)]
fn hey_i_get_compiled() {
println!("Hi! Do or do not strip me, your choice.");
}