Created
March 2, 2020 19:24
-
-
Save gugavaro/b12699a8c2aea2811f41a30184d4acda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
before | |
public abstract base { | |
} | |
public derrived : base { | |
public derrived get(); | |
} | |
now: | |
public abstract base { | |
public abstract base get(); | |
} | |
public derrived : base { | |
public override base get(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment