solidity/test/libsolidity/syntaxTests/visibility/interface/interface_contract_function_default.sol

14 lines
529 B
Solidity
Raw Normal View History

// State of the syntax checker has to be reset after the interface
// was visited. The suggested visibility for g() should not be external.
interface I {
function f();
}
contract C {
function g();
}
// ----
// SyntaxError: (158-171): No visibility specified. Did you intend to add "external"?
// SyntaxError: (191-204): No visibility specified. Did you intend to add "public"?
2019-10-23 20:10:12 +00:00
// TypeError: (174-206): Contract "C" should be marked as abstract.
// TypeError: (158-171): Functions in interfaces must be declared external.