diff options
Diffstat (limited to 'crates/ra_hir/src/nameres')
-rw-r--r-- | crates/ra_hir/src/nameres/tests/macros.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_hir/src/nameres/tests/macros.rs b/crates/ra_hir/src/nameres/tests/macros.rs index ff762ee30..ebfefe273 100644 --- a/crates/ra_hir/src/nameres/tests/macros.rs +++ b/crates/ra_hir/src/nameres/tests/macros.rs | |||
@@ -150,13 +150,13 @@ fn macro_rules_from_other_crates_are_visible_with_macro_use() { | |||
150 | structs!(Foo); | 150 | structs!(Foo); |
151 | structs_priv!(Bar); | 151 | structs_priv!(Bar); |
152 | structs_not_exported!(MacroNotResolved1); | 152 | structs_not_exported!(MacroNotResolved1); |
153 | crates::structs!(MacroNotResolved2); | 153 | crate::structs!(MacroNotResolved2); |
154 | 154 | ||
155 | mod bar; | 155 | mod bar; |
156 | 156 | ||
157 | //- /bar.rs | 157 | //- /bar.rs |
158 | structs!(Baz); | 158 | structs!(Baz); |
159 | crates::structs!(MacroNotResolved3); | 159 | crate::structs!(MacroNotResolved3); |
160 | 160 | ||
161 | //- /lib.rs | 161 | //- /lib.rs |
162 | #[macro_export] | 162 | #[macro_export] |