solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/424_using_interface_complex.sol
chriseth cac2e843e6
Merge pull request #7618 from ethereum/addMoreAbstractKeywordsInTests
Add some more abstract keywords in test to make sure the correct property is tested.
2019-11-05 13:38:21 +01:00

12 lines
188 B
Solidity

interface I {
event A();
function f() external;
function g() external;
fallback() external;
}
abstract contract C is I {
function f() public override {
}
}
// ----