We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48b6f28 commit edd66a7Copy full SHA for edd66a7
src/tools/rust-analyzer/crates/hir-expand/src/fixup.rs
@@ -277,7 +277,7 @@ pub(crate) fn fixup_syntax(
277
},
278
ast::RecordExprField(it) => {
279
if let Some(colon) = it.colon_token() {
280
- if it.name_ref().is_some() {
+ if it.name_ref().is_some() && it.expr().is_none() {
281
append.insert(colon.into(), vec![
282
Leaf::Ident(Ident {
283
text: "__ra_fixup".into(),
@@ -843,6 +843,20 @@ fn foo () {R {f : __ra_fixup}}
843
)
844
}
845
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
+
860
#[test]
861
fn fixup_arg_list() {
862
check(
0 commit comments