mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[SMTChecker] Add support to constructors
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C {
|
||||
uint x;
|
||||
|
||||
constructor() public {
|
||||
assert(x == 0);
|
||||
x = 10;
|
||||
}
|
||||
|
||||
function f(uint y) public view {
|
||||
assert(y == x);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning: (148-162): Assertion violation happens here
|
||||
Reference in New Issue
Block a user