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/detectors/external-function/0.7.6/external_function_3.sol

16 lines
382 B

pragma experimental ABIEncoderV2;
contract Test {
struct testStruct {
uint256 id;
string name;
}
3 years ago
function good(bytes calldata x) external {}
function good2() public {}
function good3(uint256 x, uint256 y) public {}
function good4(uint256[] calldata x, string calldata y) external {}
function good5(testStruct calldata x) external {}
}