solidity/test/libsolidity/syntaxTests/viewPureChecker/gas_value_without_call.sol

14 lines
253 B
Solidity

contract C {
function f() external payable {}
function g(address a) external pure {
a.call.value(42);
a.call.gas(42);
a.staticcall.gas(42);
a.delegatecall.gas(42);
}
function h() external view {
this.f.value(42);
this.f.gas(42);
}
}