solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/528_fallback_marked_private.sol

6 lines
123 B
Solidity
Raw Normal View History

contract C {
function () private { }
}
// ----
2018-06-28 16:09:27 +00:00
// TypeError: (17-40): Fallback function must be defined as "external".