solidity/test/libsolidity/ABIJson/structs_and_arrays.sol

33 lines
642 B
Solidity
Raw Normal View History

2019-07-02 15:30:54 +00:00
// bug #1801
contract test {
function f(string calldata a, bytes calldata b, uint[] calldata c) external {}
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
2019-07-02 14:04:52 +00:00
// "internalType": "string",
2019-07-02 15:30:54 +00:00
// "name": "a",
// "type": "string"
// },
// {
2019-07-02 14:04:52 +00:00
// "internalType": "bytes",
2019-07-02 15:30:54 +00:00
// "name": "b",
// "type": "bytes"
// },
// {
2019-07-02 14:04:52 +00:00
// "internalType": "uint256[]",
2019-07-02 15:30:54 +00:00
// "name": "c",
// "type": "uint256[]"
// }
// ],
// "name": "f",
// "outputs": [],
// "stateMutability": "nonpayable",
// "type": "function"
// }
// ]