solidity/test/libsolidity/syntaxTests/viewPureChecker/interface.sol

7 lines
102 B
Solidity
Raw Normal View History

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