mirror of https://github.com/crytic/slither
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.
16 lines
382 B
16 lines
382 B
pragma experimental ABIEncoderV2;
|
|
|
|
contract Test {
|
|
|
|
struct testStruct {
|
|
uint256 id;
|
|
string name;
|
|
}
|
|
|
|
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 {}
|
|
|
|
} |