Merge pull request #668 from BBasile/issue-665

fix #665 - The check for auto function without return doesn't handle "implicit auto functions"
This commit is contained in:
Sebastian Wilzbach 2018-06-20 18:45:23 +02:00 committed by GitHub
commit 103a327a60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public:
_returns[$-1] = false;
const bool autoFun = decl.storageClasses
.any!(a => a.token.type == tok!"auto");
.any!(a => a.token.type == tok!"auto" || a.atAttribute !is null);
decl.accept(this);
@ -216,6 +216,16 @@ unittest
AutoFunctionChecker.MESSAGE,
), sac);
assertAnalyzerWarnings(q{
@property doStuff(){} // [warn]: %s
@safe doStuff(){} // [warn]: %s
@disable doStuff();
@safe void doStuff();
}c.format(
AutoFunctionChecker.MESSAGE,
AutoFunctionChecker.MESSAGE,
), sac);
assertAnalyzerWarnings(q{
enum _genSave = "return true;";
auto doStuff(){ mixin(_genSave);}