solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/498_msg_gas_deprecated.sol
2018-07-04 11:42:05 +02:00

6 lines
171 B
Solidity

contract C {
function f() public view returns (uint256 val) { return msg.gas; }
}
// ----
// TypeError: (73-80): "msg.gas" has been deprecated in favor of "gasleft()"