solidity/test/libsolidity/ABIJson/include_fallback_function.sol

13 lines
181 B
Solidity
Raw Normal View History

2019-07-02 15:30:54 +00:00
contract test {
function() external {}
}
// ----
// :test
// [
// {
// "payable": false,
// "stateMutability": "nonpayable",
// "type": "fallback"
// }
// ]