Skip to content

Commit e25b20e

Browse files
committed
update generated.rs
1 parent a01a4ba commit e25b20e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/ide_assists/src/tests/generated.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,16 @@ fn doctest_add_missing_match_arms() {
129129
enum Action { Move { distance: u32 }, Stop }
130130
131131
fn handle(action: Action) {
132-
match action $0 {
132+
match action {
133+
$0
133134
}
134135
}
135136
"#####,
136137
r#####"
137138
enum Action { Move { distance: u32 }, Stop }
138139
139140
fn handle(action: Action) {
140-
match action {
141+
match action {
141142
$0Action::Move { distance } => todo!(),
142143
Action::Stop => todo!(),
143144
}

0 commit comments

Comments
 (0)