aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/415_interface_functions.sol
blob: a5d6561e729395c5fbf138fc9e7f20cc9022c6f7 (plain) (blame)
1
2
3
4
5
interface I {
    function() external;
    function f() external;
}
// ----