Merge pull request #686 from BBasile/issue-685

fix #685 - Useless final attribute detects false positives
merged-on-behalf-of: Sebastian Wilzbach <sebi.wilzbach@gmail.com>
This commit is contained in:
The Dlang Bot 2018-08-14 11:09:35 +02:00 committed by GitHub
commit 44e0092b88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -149,12 +149,14 @@ public:
undoBlockStatic = true;
}
const bool wasFinalAggr = _finalAggregate;
scope(exit)
{
d.accept(this);
_parent = savedParent;
if (undoBlockStatic)
_blockStatic = false;
_finalAggregate = wasFinalAggr;
}
if (!d.attributeDeclaration &&
@ -402,5 +404,14 @@ public:
FinalAttributeChecker.MSGB.format(FinalAttributeChecker.MESSAGE.class_s)
), sac);
assertAnalyzerWarnings(q{
class Statement
{
final class UsesEH{}
final void comeFrom(){}
}
}, sac);
stderr.writeln("Unittest for FinalAttributeChecker passed.");
}