aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/416_interface_function_bodies.sol
blob: fee2525ef70817d1cf6108eb60ed86935e842914 (plain) (blame)
1
2
3
4
5
6
interface I {
    function f() external pure {
    }
}
// ----
// TypeError: (18-52): Functions in interfaces cannot have an implementation.