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