Last active
July 15, 2019 08:08
-
-
Save creativecreatorormaybenot/10e4a4fe0cc01c7eb5ec926ff9a4cebb to your computer and use it in GitHub Desktop.
This file contains 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 Foo { | |
output() { | |
print('q'); | |
} | |
} | |
mixin Bar { | |
output() { | |
print('w'); | |
} | |
} | |
class Baz extends Foo with Bar {} | |
main() { | |
Baz().output(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment