mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
17 lines
196 B
Rust
17 lines
196 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
|
|
mod foo {
|
|
pub enum Foo {
|
|
Bar { a: isize }
|
|
}
|
|
}
|
|
|
|
fn f(f: foo::Foo) {
|
|
match f {
|
|
foo::Foo::Bar { a: _a } => {}
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|