mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
496 B
Solidity
27 lines
496 B
Solidity
contract test {
|
|
function f() public {}
|
|
function g() public payable {}
|
|
}
|
|
// ----
|
|
// :test
|
|
// [
|
|
// {
|
|
// "constant": false,
|
|
// "inputs": [],
|
|
// "name": "f",
|
|
// "outputs": [],
|
|
// "payable": false,
|
|
// "stateMutability": "nonpayable",
|
|
// "type": "function"
|
|
// },
|
|
// {
|
|
// "constant": false,
|
|
// "inputs": [],
|
|
// "name": "g",
|
|
// "outputs": [],
|
|
// "payable": true,
|
|
// "stateMutability": "payable",
|
|
// "type": "function"
|
|
// }
|
|
// ]
|