Skip to content

Commit 4d58fc1

Browse files
committed
fixed tests
1 parent 8ab0fc3 commit 4d58fc1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/tools/rust-analyzer/crates/hir/src/semantics.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,13 @@ impl<'db> SemanticsImpl<'db> {
345345
) => {
346346
// Do nothing and allow matching macros to be expanded
347347
}
348-
_ => return None,
348+
349+
hir_expand::MacroDefKind::BuiltIn(_, _)
350+
| hir_expand::MacroDefKind::BuiltInAttr(_, _)
351+
| hir_expand::MacroDefKind::BuiltInEager(_, _)
352+
| hir_expand::MacroDefKind::BuiltInDerive(_, _) => return None,
353+
354+
_ => (),
349355
}
350356

351357
let node = self.parse_or_expand(file_id.into());

0 commit comments

Comments
 (0)