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