Skip to content

Instantly share code, notes, and snippets.

@leedo
Created December 17, 2010 23:01
Show Gist options
  • Save leedo/745866 to your computer and use it in GitHub Desktop.
Save leedo/745866 to your computer and use it in GitHub Desktop.
Role error
package Fooer;
use Moose::Role;
requires "foo";
package Foo;
use Moose;
with "Fooer";
has "foo" => (is => 'ro');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment