fix #666 - False positive for "trust too much"
This commit is contained in:
parent
76d8a30d23
commit
a864eaafb7
|
@ -57,7 +57,11 @@ public:
|
||||||
override void visit(const Declaration d)
|
override void visit(const Declaration d)
|
||||||
{
|
{
|
||||||
const oldCheckAtAttribute = checkAtAttribute;
|
const oldCheckAtAttribute = checkAtAttribute;
|
||||||
checkAtAttribute = d.functionDeclaration is null;
|
|
||||||
|
checkAtAttribute = d.functionDeclaration is null && d.unittest_ is null &&
|
||||||
|
d.constructor is null && d.destructor is null &&
|
||||||
|
d.staticConstructor is null && d.staticDestructor is null &&
|
||||||
|
d.sharedStaticConstructor is null && d.sharedStaticDestructor is null;
|
||||||
d.accept(this);
|
d.accept(this);
|
||||||
checkAtAttribute = oldCheckAtAttribute;
|
checkAtAttribute = oldCheckAtAttribute;
|
||||||
}
|
}
|
||||||
|
@ -145,5 +149,10 @@ unittest
|
||||||
alias nothrow @trusted uint F4();
|
alias nothrow @trusted uint F4();
|
||||||
}c , sac);
|
}c , sac);
|
||||||
|
|
||||||
|
assertAnalyzerWarnings(q{
|
||||||
|
@trusted ~this();
|
||||||
|
@trusted this();
|
||||||
|
}c , sac);
|
||||||
|
|
||||||
stderr.writeln("Unittest for TrustTooMuchCheck passed.");
|
stderr.writeln("Unittest for TrustTooMuchCheck passed.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue