mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-19 23:40:48 +00:00
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
154 B
Rust
11 lines
154 B
Rust
//@ run-pass
|
|
|
|
static NAME: &'static str = "hello world";
|
|
|
|
fn main() {
|
|
match &*NAME.to_ascii_lowercase() {
|
|
"foo" => {}
|
|
_ => {}
|
|
}
|
|
}
|