solidity/test/libsolidity/syntaxTests/functionCalls/lowlevel_call_options.sol
2020-01-23 21:20:01 +01:00

8 lines
143 B
Solidity

contract C {
function foo() internal {
(bool success, ) = address(10).call{value: 7, gas: 3}("");
success;
}
}
// ----