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/examples/scripts/functions_called.sol

30 lines
310 B

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(){
}
}