Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
119 B
Rust
10 lines
119 B
Rust
//@ run-pass
|
|
|
|
pub fn main() {
|
|
let x = &Some(1);
|
|
match x {
|
|
&Some(_) => (),
|
|
&None => (),
|
|
}
|
|
}
|