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.
27 lines
433 B
27 lines
433 B
6 years ago
|
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; }
|
||
|
}
|