solidity/test/libsolidity/ABIJson/library_function.sol
2019-09-06 14:42:09 +02:00

36 lines
813 B
Solidity

library test {
struct StructType { uint a; }
function f(StructType storage b, uint[] storage c, test d) public returns (uint[] memory e, StructType storage f) { f = f; }
function f1(uint[] memory c, test d) public pure returns (uint[] memory e) { }
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
// "internalType": "uint256[]",
// "name": "c",
// "type": "uint256[]"
// },
// {
// "internalType": "library test",
// "name": "d",
// "type": "test"
// }
// ],
// "name": "f1",
// "outputs":
// [
// {
// "internalType": "uint256[]",
// "name": "e",
// "type": "uint256[]"
// }
// ],
// "stateMutability": "pure",
// "type": "function"
// }
// ]