mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
let_underscore
: Delay macro check.
This commit is contained in:
parent
fed75b3895
commit
5332def0fd
1 changed files with 1 additions and 1 deletions
|
@ -139,9 +139,9 @@ const SYNC_GUARD_PATHS: [&[&str]; 3] = [
|
|||
impl<'tcx> LateLintPass<'tcx> for LetUnderscore {
|
||||
fn check_local(&mut self, cx: &LateContext<'tcx>, local: &LetStmt<'tcx>) {
|
||||
if matches!(local.source, LocalSource::Normal)
|
||||
&& !in_external_macro(cx.tcx.sess, local.span)
|
||||
&& let PatKind::Wild = local.pat.kind
|
||||
&& let Some(init) = local.init
|
||||
&& !in_external_macro(cx.tcx.sess, local.span)
|
||||
{
|
||||
let init_ty = cx.typeck_results().expr_ty(init);
|
||||
let contains_sync_guard = init_ty.walk().any(|inner| match inner.unpack() {
|
||||
|
|
Loading…
Reference in a new issue