aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/416_interface_function_bodies.sol
blob: 24b26c0462fcd6452c96a2a6491755ab4e430428 (plain) (blame)
1
2
3
4
5
6
7
interface I {
    function f() public {
    }
}
// ----
// TypeError: (18-45): Functions in interfaces cannot have an implementation.
// Warning: (18-45): Functions in interfaces should be declared external.