mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
33 lines
642 B
Solidity
33 lines
642 B
Solidity
// bug #1801
|
|
contract test {
|
|
function f(string calldata a, bytes calldata b, uint[] calldata c) external {}
|
|
}
|
|
// ----
|
|
// :test
|
|
// [
|
|
// {
|
|
// "inputs":
|
|
// [
|
|
// {
|
|
// "internalType": "string",
|
|
// "name": "a",
|
|
// "type": "string"
|
|
// },
|
|
// {
|
|
// "internalType": "bytes",
|
|
// "name": "b",
|
|
// "type": "bytes"
|
|
// },
|
|
// {
|
|
// "internalType": "uint256[]",
|
|
// "name": "c",
|
|
// "type": "uint256[]"
|
|
// }
|
|
// ],
|
|
// "name": "f",
|
|
// "outputs": [],
|
|
// "stateMutability": "nonpayable",
|
|
// "type": "function"
|
|
// }
|
|
// ]
|