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

10 lines
185 B
Solidity

contract C
{
function f() public pure returns (bool) {
bool sha3 = true;
return sha3;
}
}
// ----
// Warning 2319: (58-67='bool sha3'): This declaration shadows a builtin symbol.