Merge pull request #589 from BBasile/issue-588

fix #588 - trust_too_much false positive with alias decl
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-04-03 07:47:44 +02:00 committed by GitHub
commit 68e558abe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -61,6 +61,15 @@ public:
d.accept(this);
checkAtAttribute = oldCheckAtAttribute;
}
// issue #588
override void visit(const AliasDeclaration d)
{
const oldCheckAtAttribute = checkAtAttribute;
checkAtAttribute = false;
d.accept(this);
checkAtAttribute = oldCheckAtAttribute;
}
}
unittest
@ -132,5 +141,9 @@ unittest
}
}c , sac);
assertAnalyzerWarnings(q{
alias nothrow @trusted uint F4();
}c , sac);
stderr.writeln("Unittest for TrustTooMuchCheck passed.");
}