aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/interface_basic.sol
blob: c25b48bae6f90f679a3a4db2728e4e9b4d57f141 (plain) (blame)
1
2
3
4
5
6
interface Interface {
    function f();
}
// ----
// Warning: (23-36): Functions in interfaces should be declared external.
// Warning: (23-36): No visibility specified. Defaulting to "public". In interfaces it defaults to external.