aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/visibility/interface/function_public.sol
blob: 146d4f5b5fa88c1c7703e0b2358996f47ecaa383 (plain) (blame)
1
2
3
4
5
interface I {
    function f() public;
}
// ----
// Warning: Functions in interfaces should be declared external.