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.
30 lines
310 B
30 lines
310 B
6 years ago
|
contract BaseContract{
|
||
|
|
||
|
function f1(){
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
contract Contract is BaseContract{
|
||
|
|
||
|
uint a;
|
||
|
|
||
|
function entry_point(){
|
||
|
f1();
|
||
|
f2();
|
||
|
}
|
||
|
|
||
|
function f1(){
|
||
|
super.f1();
|
||
|
}
|
||
|
|
||
|
function f2(){
|
||
|
|
||
|
}
|
||
|
|
||
|
// not reached from entry_point
|
||
|
function f3(){
|
||
|
|
||
|
}
|
||
|
}
|