Merge pull request #703 from BBasile/issue-696

fix #696 - Unused variable fake positive with UFCS
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-09-16 20:03:20 +02:00 committed by GitHub
commit 19f08780c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 4 deletions

View File

@ -199,11 +199,10 @@ final class UnusedVariableCheck : BaseAnalyzer
override void visit(const UnaryExpression unary) override void visit(const UnaryExpression unary)
{ {
if (unary.prefix == tok!"*") const bool interesting = unary.prefix == tok!"*" || unary.unaryExpression !is null;
interestDepth++; interestDepth += interesting;
unary.accept(this); unary.accept(this);
if (unary.prefix == tok!"*") interestDepth -= interesting;
interestDepth--;
} }
override void visit(const MixinExpression mix) override void visit(const MixinExpression mix)
@ -539,6 +538,12 @@ private:
mixin("decl++;"); mixin("decl++;");
} }
void main()
{
const int testValue;
testValue.writeln;
}
}c, sac); }c, sac);
stderr.writeln("Unittest for UnusedVariableCheck passed."); stderr.writeln("Unittest for UnusedVariableCheck passed.");
} }