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

7 lines
204 B
Solidity
Raw Normal View History

interface I {
function f();
}
// ----
// Warning: Functions in interfaces should be declared external.
2018-03-28 16:10:32 +00:00
// Warning: No visibility specified. Defaulting to "public". In interfaces it defaults to external.