solidity/test/libsolidity/smtCheckerTests/special/tx_vars_reentrancy_2.sol
2022-11-24 13:08:06 +01:00

17 lines
489 B
Solidity

interface I {
function f() external payable;
}
contract C {
function g(I _i) public payable {
uint x = address(this).balance;
_i.f{ value: 100 }();
assert(x == address(this).balance); // should fail
}
}
// ====
// SMTEngine: all
// SMTIgnoreOS: macos
// ----
// Warning 6328: (157-191): CHC: Assertion violation happens here.\nCounterexample:\n\n_i = 0\nx = 101\n\nTransaction trace:\nC.constructor()\nC.g(0){ msg.value: 83 }\n _i.f{ value: 100 }() -- untrusted external call