Skip to content

Instantly share code, notes, and snippets.

@TehilaFavourite
Created May 10, 2023 12:40
Show Gist options
  • Save TehilaFavourite/2c5cd4391cfeffebd5ff5e44e2326813 to your computer and use it in GitHub Desktop.
Save TehilaFavourite/2c5cd4391cfeffebd5ff5e44e2326813 to your computer and use it in GitHub Desktop.
pragma solidity 0.8.19;
contract Base
{
modifier foo() virtual {_;}
}
contract Inherited is Base
{
modifier foo() override {_;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment