solidity/test/libsolidity/smtCheckerTests/bmc_coverage/funds.sol

11 lines
208 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(address payable a) public {
a.transfer(200);
}
}
// ====
// SMTEngine: bmc
// ----
// Warning 1236: (87-102): BMC: Insufficient funds happens here.