mirror of https://github.com/crytic/slither
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.
26 lines
441 B
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; }
|
|
}
|
|
|