Created with <3 with dartpad.dev.
Created
July 20, 2022 17:17
-
-
Save yanok/04ee4066b8d87f8285df9052f9898aaf to your computer and use it in GitHub Desktop.
swift-eucalyptus-0426
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
class A { | |
int f() => 1; | |
} | |
class B extends A { | |
int f(); | |
} | |
void main() { | |
print(B().f()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment