solidity/test/libsolidity/ABIJson/include_fallback_function.sol

12 lines
156 B
Solidity
Raw Normal View History

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