commit
2a1f96f3dd
|
@ -162,6 +162,18 @@ public:
|
||||||
popNestedFunc();
|
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)
|
override void visit(const(Constructor) ctor)
|
||||||
{
|
{
|
||||||
pushInCtor(isInClass);
|
pushInCtor(isInClass);
|
||||||
|
@ -404,6 +416,18 @@ unittest
|
||||||
}
|
}
|
||||||
}, sac);
|
}, sac);
|
||||||
|
|
||||||
|
assertAnalyzerWarnings(q{
|
||||||
|
class C {
|
||||||
|
static struct S {
|
||||||
|
public:
|
||||||
|
this(int) {
|
||||||
|
foo();
|
||||||
|
}
|
||||||
|
void foo() {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, sac);
|
||||||
|
|
||||||
import std.stdio: writeln;
|
import std.stdio: writeln;
|
||||||
writeln("Unittest for VcallCtorChecker passed");
|
writeln("Unittest for VcallCtorChecker passed");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue