[SMTChecker] Do not visit the name of a modifier invocation

This commit is contained in:
Leonardo Alt
2019-11-27 22:34:33 +01:00
parent d207ae5dc7
commit 240ff30878
3 changed files with 28 additions and 3 deletions
@@ -0,0 +1,17 @@
pragma experimental SMTChecker;
contract A {
uint x;
constructor() public {
x = 2;
}
}
contract B is A {
constructor() A() public {
x = 3;
}
}
// ----
// Warning: (56-90): Assertion checker does not yet support constructors.
// Warning: (113-151): Assertion checker does not yet support constructors.