mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
221 B
Solidity
18 lines
221 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
|
||
|
contract Base {
|
||
|
uint x;
|
||
|
uint z;
|
||
|
uint private t;
|
||
|
}
|
||
|
|
||
|
contract C is Base {
|
||
|
function f(uint y) public {
|
||
|
require(x < 10);
|
||
|
require(y < 100);
|
||
|
z = x + y;
|
||
|
assert(z < 150);
|
||
|
}
|
||
|
}
|
||
|
// ----
|