Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/macro_expansion_tests/proc_macros.rs')
| -rw-r--r-- | crates/hir_def/src/macro_expansion_tests/proc_macros.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/hir_def/src/macro_expansion_tests/proc_macros.rs b/crates/hir_def/src/macro_expansion_tests/proc_macros.rs index dead99a40c..e0c5367cf3 100644 --- a/crates/hir_def/src/macro_expansion_tests/proc_macros.rs +++ b/crates/hir_def/src/macro_expansion_tests/proc_macros.rs @@ -86,6 +86,10 @@ fn foo() { bar.; blub } expect![[r##" #[proc_macros::identity_when_valid] fn foo() { bar.; blub } -"##]], + +fn foo() { + bar.; + blub +}"##]], ); } |