From: Wang Ruochen Date: Mon, 3 Jan 2022 17:48:50 +0000 (-0800) Subject: Update generated tests X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=95145d5ab6c734ea8ca5e66a94ad381b9e897000;p=rust.git Update generated tests --- diff --git a/crates/ide_assists/src/tests/generated.rs b/crates/ide_assists/src/tests/generated.rs index 0c037ca5ef7..ab5ef916573 100644 --- a/crates/ide_assists/src/tests/generated.rs +++ b/crates/ide_assists/src/tests/generated.rs @@ -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 } => {} _ => (), } }