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