shadowing.sol 186 B

123456789
  1. contract test {
  2. uint256 foo = 102;
  3. uint256 bar;
  4. function foobar() public {
  5. // AVOID: this shadows the contract storage variable foo
  6. uint256 foo = 5;
  7. }
  8. }