Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-expand/src/builtin_fn_macro.rs')
-rw-r--r--crates/hir-expand/src/builtin_fn_macro.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/hir-expand/src/builtin_fn_macro.rs b/crates/hir-expand/src/builtin_fn_macro.rs
index 7eec636176..00ee5e8b9d 100644
--- a/crates/hir-expand/src/builtin_fn_macro.rs
+++ b/crates/hir-expand/src/builtin_fn_macro.rs
@@ -419,9 +419,9 @@ fn asm_expand(
let pound = quote! {@PUNCT '#'};
let expanded = quote! {
- builtin #pound asm {
- ##literals
- }
+ builtin #pound asm (
+ {##literals}
+ )
};
ExpandResult::ok(expanded)
}