solidity/test/libsolidity/smtCheckerTests/functions/internal_call_state_var_init.sol
Leonardo Alt ec766958ea Add test
2020-05-28 13:14:21 +02:00

6 lines
124 B
Solidity

pragma experimental SMTChecker;
contract c {
bool b = (f() == 0) && (f() == 0);
function f() internal returns (uint) {}
}