Created
December 17, 2010 23:01
-
-
Save leedo/745866 to your computer and use it in GitHub Desktop.
Role error
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
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