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

14 lines
358 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f() public {
uint a = 3;
this.f();
assert(a == 3);
f();
assert(a == 3);
}
}
// ----
2019-04-17 14:08:02 +00:00
// Warning: (99-103): Assertion checker does not yet support the type of this variable.
// Warning: (141-144): Assertion checker does not support recursive function calls.