File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ struct Foo {}
319
319
"# ,
320
320
expect ! [ [ r#"
321
321
Clone
322
- impl< >core::clone::Clone for Foo< >{}
322
+ impl < >core::clone::Clone for Foo< >{}
323
323
324
324
"# ] ] ,
325
325
) ;
@@ -337,7 +337,7 @@ struct Foo {}
337
337
"# ,
338
338
expect ! [ [ r#"
339
339
Copy
340
- impl< >core::marker::Copy for Foo< >{}
340
+ impl < >core::marker::Copy for Foo< >{}
341
341
342
342
"# ] ] ,
343
343
) ;
@@ -354,9 +354,9 @@ struct Foo {}
354
354
"# ,
355
355
expect ! [ [ r#"
356
356
Copy, Clone
357
- impl< >core::marker::Copy for Foo< >{}
357
+ impl < >core::marker::Copy for Foo< >{}
358
358
359
- impl< >core::clone::Clone for Foo< >{}
359
+ impl < >core::clone::Clone for Foo< >{}
360
360
361
361
"# ] ] ,
362
362
) ;
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ pub fn insert_ws_into(syn: SyntaxNode) -> SyntaxNode {
88
88
LIFETIME_IDENT if is_next ( |it| is_text ( it) , true ) => {
89
89
mods. push ( do_ws ( after, tok) ) ;
90
90
}
91
- AS_KW | DYN_KW => {
91
+ AS_KW | DYN_KW | IMPL_KW => {
92
92
mods. push ( do_ws ( after, tok) ) ;
93
93
}
94
94
T ! [ ; ] => {
You can’t perform that action at this time.
0 commit comments