1 2 3 4 5 6 7
contract C { // Check that visibility is also enforced for the fallback function. function() {} } // ---- // SyntaxError: (90-103): No visibility specified. // TypeError: (90-103): Fallback function must be defined as "external".