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

29 lines
345 B

contract BaseContract{
function f1() public{
}
}
contract Contract is BaseContract{
uint a;
function entry_point() public{
f1();
f2();
}
function f1() public{
super.f1();
}
function f2() public{
}
// not reached from entry_point
function f3() public{
}
}