Update generated tests

This commit is contained in:
Wang Ruochen 2022-01-03 09:48:50 -08:00
parent a19a32488d
commit 95145d5ab6
No known key found for this signature in database
GPG Key ID: C6DEA570A3B026FC

View File

@ -1403,7 +1403,6 @@ enum Action { Move { distance: u32 }, Stop }
fn handle(action: Action) {
match action {
Action::Move { distance } if distance > 10 => foo(),
Action::Move { distance } => {}
_ => (),
}
}