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

6 lines
124 B
Solidity
Raw Normal View History

2020-05-28 10:40:08 +00:00
pragma experimental SMTChecker;
contract c {
bool b = (f() == 0) && (f() == 0);
function f() internal returns (uint) {}
}