rust/tests/ui/pattern/premature-match-scrutinee-temporary-drop-10683.rs
2025-07-25 20:38:54 +05:00

13 lines
226 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/10683
//@ run-pass
static NAME: &'static str = "hello world";
fn main() {
match &*NAME.to_ascii_lowercase() {
"foo" => {}
_ => {}
}
}