Skip to content

Commit 9b8b6f9

Browse files
committed
Auto merge of #17464 - wyatt-herkamp:fix-actix-macro, r=lnicola
Check that Expr is none before adding fixup Closes #17463
2 parents 48b6f28 + edd66a7 commit 9b8b6f9

File tree

1 file changed

+15
-1
lines changed
  • src/tools/rust-analyzer/crates/hir-expand/src

1 file changed

+15
-1
lines changed

src/tools/rust-analyzer/crates/hir-expand/src/fixup.rs

+15-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ pub(crate) fn fixup_syntax(
277277
},
278278
ast::RecordExprField(it) => {
279279
if let Some(colon) = it.colon_token() {
280-
if it.name_ref().is_some() {
280+
if it.name_ref().is_some() && it.expr().is_none() {
281281
append.insert(colon.into(), vec![
282282
Leaf::Ident(Ident {
283283
text: "__ra_fixup".into(),
@@ -843,6 +843,20 @@ fn foo () {R {f : __ra_fixup}}
843843
)
844844
}
845845

846+
#[test]
847+
fn no_fixup_record_ctor_field() {
848+
check(
849+
r#"
850+
fn foo() {
851+
R { f: a }
852+
}
853+
"#,
854+
expect![[r#"
855+
fn foo () {R {f : a}}
856+
"#]],
857+
)
858+
}
859+
846860
#[test]
847861
fn fixup_arg_list() {
848862
check(

0 commit comments

Comments
 (0)