mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
35 lines
408 B
Rust
35 lines
408 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
|
|
mod m2 {
|
|
pub enum Foo {
|
|
A,
|
|
B(isize),
|
|
C { a: isize },
|
|
}
|
|
|
|
impl Foo {
|
|
pub fn foo() {}
|
|
}
|
|
}
|
|
|
|
mod m {
|
|
pub use m2::Foo::*;
|
|
}
|
|
|
|
fn _f(f: m2::Foo) {
|
|
use m2::Foo::*;
|
|
|
|
match f {
|
|
A | B(_) | C { .. } => {}
|
|
}
|
|
}
|
|
|
|
fn _f2(f: m2::Foo) {
|
|
match f {
|
|
m::A | m::B(_) | m::C { .. } => {}
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|