mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
12 lines
174 B
Rust
12 lines
174 B
Rust
// rustfmt-max_width: 80
|
|
fn foo(e: Enum) {
|
|
match e {
|
|
Enum::Var {
|
|
element1,
|
|
element2,
|
|
} => {
|
|
return;
|
|
}
|
|
}
|
|
}
|