solidity/test/libsolidity/smtCheckerTests/functions/function_call_does_not_clear_local_vars.sol
2019-04-18 17:56:52 +02:00

13 lines
270 B
Solidity

pragma experimental SMTChecker;
contract C {
function f() public {
uint a = 3;
this.f();
assert(a == 3);
f();
assert(a == 3);
}
}
// ----
// Warning: (141-144): Assertion checker does not support recursive function calls.