mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[SMTChecker] Do not visit the name of a modifier invocation
This commit is contained in:
@@ -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.
|
||||
Reference in New Issue
Block a user