We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 070ecef + 6e1c87e commit b988c6fCopy full SHA for b988c6f
crates/ide/src/diagnostics.rs
@@ -135,6 +135,11 @@ pub(crate) fn diagnostics(
135
res.borrow_mut().push(warning_with_fix(d, &sema));
136
})
137
.on::<hir::diagnostics::InactiveCode, _>(|d| {
138
+ // If there's inactive code somewhere in a macro, don't propagate to the call-site.
139
+ if d.display_source().file_id.expansion_info(db).is_some() {
140
+ return;
141
+ }
142
+
143
// Override severity and mark as unused.
144
res.borrow_mut().push(
145
Diagnostic::hint(sema.diagnostics_display_range(d).range, d.message())
0 commit comments