aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/viewPureChecker/interface.sol
blob: 0874e78a25a84a29490103d1cd12d69bff003d83 (plain) (tree)
1
2
3
4
5
6





                                 
interface D {
    function f() view external;
}
contract C is D {
    function f() view external {}
}