aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/visibility/interface/function_default.sol
blob: 72ce3b40c79516bc93af54c56938a820b14a0fc7 (plain) (blame)
1
2
3
4
5
6
interface I {
    function f();
}
// ----
// Warning: (15-28): Functions in interfaces should be declared external.
// Warning: (15-28): No visibility specified. Defaulting to "public". In interfaces it defaults to external.