Static Analyzer for Solidity
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
slither/tests/detectors/shadowing-local/0.6.11/shadowing_local_variable.sol

26 lines
441 B

// pragma solidity ^0.4.24;
contract BaseContract {
uint x = 5;
uint y = 5;
}
contract ExtendedContract is BaseContract {
uint _x = 7;
function z() public pure {}
event v();
}
contract FurtherExtendedContract is ExtendedContract {
uint __x = 7;
modifier w {
assert(msg.sender != address(0));
_;
}
function shadowingParent(uint __x) public pure { int y; uint z; uint w; uint v; }
}