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