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:
commit
19f08780c3
|
@ -199,11 +199,10 @@ final class UnusedVariableCheck : BaseAnalyzer
|
|||
|
||||
override void visit(const UnaryExpression unary)
|
||||
{
|
||||
if (unary.prefix == tok!"*")
|
||||
interestDepth++;
|
||||
const bool interesting = unary.prefix == tok!"*" || unary.unaryExpression !is null;
|
||||
interestDepth += interesting;
|
||||
unary.accept(this);
|
||||
if (unary.prefix == tok!"*")
|
||||
interestDepth--;
|
||||
interestDepth -= interesting;
|
||||
}
|
||||
|
||||
override void visit(const MixinExpression mix)
|
||||
|
@ -539,6 +538,12 @@ private:
|
|||
mixin("decl++;");
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
const int testValue;
|
||||
testValue.writeln;
|
||||
}
|
||||
|
||||
}c, sac);
|
||||
stderr.writeln("Unittest for UnusedVariableCheck passed.");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue