mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
264 B
Solidity
18 lines
264 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
|
||
|
contract c {
|
||
|
uint x;
|
||
|
function f() internal returns (uint) {
|
||
|
x = x + 1;
|
||
|
return x;
|
||
|
}
|
||
|
function g() public returns (bool) {
|
||
|
x = 0;
|
||
|
bool b = (f() == 0) && (f() == 0);
|
||
|
assert(x == 1);
|
||
|
assert(!b);
|
||
|
return b;
|
||
|
}
|
||
|
}
|
||
|
// ----
|