mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-13 07:24:00 +00:00
9 lines
141 B
Rust
9 lines
141 B
Rust
![]() |
// rustfmt-max_width: 80
|
||
|
fn foo(e: Enum) {
|
||
|
match e {
|
||
|
Enum::Var { element1, element2 } => {
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
}
|