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

31 lines
518 B
Solidity

contract test {
function f(uint k) public returns (uint) {
return k;
}
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
// "internalType": "uint256",
// "name": "k",
// "type": "uint256"
// }
// ],
// "name": "f",
// "outputs":
// [
// {
// "internalType": "uint256",
// "name": "",
// "type": "uint256"
// }
// ],
// "stateMutability": "nonpayable",
// "type": "function"
// }
// ]