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" => {}
|
|
_ => {}
|
|
}
|
|
}
|