fix #588 - trust_too_much false positive with alias decl
This commit is contained in:
parent
cb31d2501e
commit
873c8f506a
|
@ -61,6 +61,15 @@ public:
|
|||
d.accept(this);
|
||||
checkAtAttribute = oldCheckAtAttribute;
|
||||
}
|
||||
|
||||
// issue #588
|
||||
override void visit(const AliasDeclaration d)
|
||||
{
|
||||
const oldCheckAtAttribute = checkAtAttribute;
|
||||
checkAtAttribute = false;
|
||||
d.accept(this);
|
||||
checkAtAttribute = oldCheckAtAttribute;
|
||||
}
|
||||
}
|
||||
|
||||
unittest
|
||||
|
@ -132,5 +141,9 @@ unittest
|
|||
}
|
||||
}c , sac);
|
||||
|
||||
assertAnalyzerWarnings(q{
|
||||
alias nothrow @trusted uint F4();
|
||||
}c , sac);
|
||||
|
||||
stderr.writeln("Unittest for TrustTooMuchCheck passed.");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue