fix #762 - False positive on "unused variable" with side effect (#763)

This commit is contained in:
Basile-z 2019-05-29 11:11:03 +02:00 committed by GitHub
parent e5a73fa0ef
commit 378cbcc6bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 8 deletions

View File

@ -166,14 +166,9 @@ final class UnusedVariableCheck : BaseAnalyzer
override void visit(const AssignExpression assignExp)
{
if (assignExp.ternaryExpression !is null)
assignExp.ternaryExpression.accept(this);
if (assignExp.expression !is null)
{
interestDepth++;
assignExp.expression.accept(this);
interestDepth--;
}
interestDepth++;
assignExp.accept(this);
interestDepth--;
}
override void visit(const TemplateDeclaration templateDeclaration)
@ -542,6 +537,13 @@ private:
auto cb2 = delegate(size_t a) {}; // [warn]: Parameter a is never used.
cb2(3);
}
void oops ()
{
class Identity { int val; }
Identity v;
v.val = 0;
}
bool hasDittos(int decl)
{