blob: 6fbb15a5d4d67856b6d57582c9f00baa43eebd6c (
plain) (
blame)
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. Did you intend to add "external"?
// TypeError: (90-103): Fallback function must be defined as "external".
|