Merge pull request #816 from dlang-community/issue-815

Fix #815
This commit is contained in:
Brian Schott 2020-08-11 14:19:15 -07:00 committed by GitHub
commit 2a1f96f3dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -162,6 +162,18 @@ public:
popNestedFunc();
}
override void visit(const(StructDeclaration) decl)
{
pushVirtual(false);
pushInClass(false);
pushNestedFunc(false);
decl.accept(this);
check();
popVirtual();
popInClass();
popNestedFunc();
}
override void visit(const(Constructor) ctor)
{
pushInCtor(isInClass);
@ -404,6 +416,18 @@ unittest
}
}, sac);
assertAnalyzerWarnings(q{
class C {
static struct S {
public:
this(int) {
foo();
}
void foo() {}
}
}
}, sac);
import std.stdio: writeln;
writeln("Unittest for VcallCtorChecker passed");
}