solidity/test/libsolidity/syntaxTests/globalFunctions/now_deprecate.sol
2022-04-01 23:41:18 -05:00

8 lines
148 B
Solidity

contract C {
function f() public {
now;
}
}
// ----
// TypeError 7359: (38-41='now'): "now" has been deprecated. Use "block.timestamp" instead.