aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/globalFunctions/callcode_with_wrong_arg_count.sol
blob: 2b424d53bafc69072cc0a9f5268051e0a767ecca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
contract C {
    function f() public {
        require(address(this).callcode());
        require(address(this).callcode(uint(1)));
        require(address(this).callcode(uint(1), uint(2)));
    }
}
// ----
// TypeError: (55-79): Wrong argument count for function call: 0 arguments given but expected 1. This function requires a single bytes argument. Use "" as argument to provide empty calldata.
// TypeError: (121-128): Invalid type for argument in function call. Invalid implicit conversion from uint256 to bytes memory requested. This function requires a single bytes argument. If all your arguments are value types, you can use abi.encode(...) to properly generate it.
// TypeError: (148-188): Wrong argument count for function call: 2 arguments given but expected 1. This function requires a single bytes argument. If all your arguments are value types, you can use abi.encode(...) to properly generate it.