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

7 lines
111 B
Solidity
Raw Normal View History

interface D {
function f() view external;
}
contract C is D {
2019-09-16 12:33:43 +00:00
function f() override view external {}
}