Created
March 18, 2013 21:12
-
-
Save tobyink/5190855 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
| use v5.14; | |
| use Test::More tests => 1; | |
| package RRR { | |
| use Moo::Role; | |
| around BUILDARGS => sub { ::pass("got here") }; | |
| } | |
| package CCC { | |
| use Moo; | |
| with "RRR"; | |
| } | |
| CCC->new; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment