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

9 lines
171 B
Solidity

contract C {
function f() public view {
uint now = block.timestamp;
now;
}
}
// ----
// Warning 2319: (43-51='uint now'): This declaration shadows a builtin symbol.