rust/tests/target/issue-2644.rs

9 lines
141 B
Rust
Raw Normal View History

2018-05-02 10:36:12 +02:00
// rustfmt-max_width: 80
fn foo(e: Enum) {
match e {
Enum::Var { element1, element2 } => {
return;
}
}
}