Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created July 1, 2012 21:35
Show Gist options
  • Save ynonp/3029715 to your computer and use it in GitHub Desktop.
Save ynonp/3029715 to your computer and use it in GitHub Desktop.
package R1;
use Moose::Role;
sub foo {
warn 'R1::foo'
}
package R2;
use Moose::Role;
sub foo {
warn 'R2::foo'
}
package Test;
use Moose;
with qw/R1 R2/;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment