aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/423_using_interface.sol
blob: f06ffa627414cdfd864a7b4b965c03d338570ec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
interface I {
    function f();
}
contract C is I {
    function f() public {
    }
}
// ----
// Warning: (18-31): Functions in interfaces should be declared external.
// Warning: (18-31): No visibility specified. Defaulting to "public". In interfaces it defaults to external.