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/tests/external_function.sol

35 lines
587 B

pragma solidity ^0.4.24;
import "./external_function_test_2.sol";
contract ItemTwo is ItemFour {
function helloTwo() public {
uint256 i = 0;
}
}
contract ItemThree {
function helloThree() {
}
function helloTwo() internal {
}
function helloOne() public {
}
}
contract ItemOne is ItemTwo {
function helloOne() public {
uint256 i = 0;
address three = new ItemThree();
three.call(bytes4(keccak256("helloTwo()")));
super.helloTwo();
ItemFour four = new ItemFour();
four.helloFour();
}
}