solidity/test/libsolidity/syntaxTests/fallback/default_visibility.sol

8 lines
238 B
Solidity
Raw Normal View History

contract C {
// Check that visibility is also enforced for the fallback function.
function() {}
}
// ----
// SyntaxError: (90-103): No visibility specified.
2018-06-28 16:09:27 +00:00
// TypeError: (90-103): Fallback function must be defined as "external".