]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-10683.rs
Auto merge of #107044 - cuviper:more-llvm-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / issues / issue-10683.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 static NAME: &'static str = "hello world";
5
6 fn main() {
7     match &*NAME.to_ascii_lowercase() {
8         "foo" => {}
9         _ => {}
10     }
11 }