mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-02 14:07:10 +00:00
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
12 lines
123 B
Rust
12 lines
123 B
Rust
//@ run-pass
|
|
|
|
struct X { x: isize }
|
|
|
|
pub fn main() {
|
|
let _x = match 0 {
|
|
_ => X {
|
|
x: 0
|
|
}.x
|
|
};
|
|
}
|