Skip to content

Instantly share code, notes, and snippets.

@lopnor
Created December 11, 2009 08:52
Show Gist options
  • Save lopnor/254081 to your computer and use it in GitHub Desktop.
Save lopnor/254081 to your computer and use it in GitHub Desktop.
#!perl
use strict;
use warnings;
{
package MyRole;
use Moose::Role;
}
{
package MyClass;
use Moose;
has myrole => (
is => 'ro',
isa => 'RoleName',
default => 'MyRole',
);
}
my $c2 = MyClass->new;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment