solidity/test/libsolidity/ABIJson/empty_name_return_parameters.sol
2019-07-18 16:54:11 +02:00

33 lines
569 B
Solidity

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