solidity/test/libsolidity/ABIJson/empty_name_return_parameters.sol

31 lines
518 B
Solidity
Raw Normal View History

2019-07-02 15:30:54 +00:00
contract test {
function f(uint k) public returns (uint) {
return k;
}
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "k",
// "type": "uint256"
// }
// ],
// "name": "f",
// "outputs":
// [
// {
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "",
// "type": "uint256"
// }
// ],
// "stateMutability": "nonpayable",
// "type": "function"
// }
// ]