solidity/test/libsolidity/smtCheckerTests/functions/this_state.sol

16 lines
192 B
Solidity
Raw Normal View History

contract C
{
uint public x;
function g() public {
x = 0;
this.h();
assert(x == 2);
}
function h() public {
x = 2;
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2020-07-13 18:48:00 +00:00
// ----