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.6.11/external_function_3.sol

10 lines
223 B

contract Test {
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 {}
}