blob: dcb221f8c5776dcc0e7fa442d1c87d7e621231c9 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
static NAME: &'static str = "hello world";
fn main() {
match &*NAME.to_ascii_lowercase() {
"foo" => {}
_ => {}
}
}