blob: 5657ec1864b2e7aa87d92dee635c0ed20eb5d5fa [file] [log] [blame]
//@ run-pass
static NAME: &'static str = "hello world";
fn main() {
match &*NAME.to_ascii_lowercase() {
"foo" => {}
_ => {}
}
}