Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save christianparpart/6429ee226a2ee058f8279c00f376cf7e to your computer and use it in GitHub Desktop.
Save christianparpart/6429ee226a2ee058f8279c00f376cf7e to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
abstract contract A {
modifier m() virtual;
function f() A.m public {}
}
contract B is A {
modifier m() virtual override { _; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment