We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a01a4ba commit e25b20eCopy full SHA for e25b20e
crates/ide_assists/src/tests/generated.rs
@@ -129,15 +129,16 @@ fn doctest_add_missing_match_arms() {
129
enum Action { Move { distance: u32 }, Stop }
130
131
fn handle(action: Action) {
132
- match action $0 {
+ match action {
133
+ $0
134
}
135
136
"#####,
137
r#####"
138
139
140
- match action {
141
142
$0Action::Move { distance } => todo!(),
143
Action::Stop => todo!(),
144
0 commit comments