solidity/test/libsolidity/smtCheckerTests/inheritance/state_variables.sol
2019-05-02 10:03:12 +02:00

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);
}
}
// ----