Skip to content

Instantly share code, notes, and snippets.

@Potatohead
Created October 26, 2011 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Potatohead/1315248 to your computer and use it in GitHub Desktop.
Save Potatohead/1315248 to your computer and use it in GitHub Desktop.
part of method signatures bug example
package InnerRole;
use Moose::Role;
use Method::Signatures;
1;
package OuterImplementor;
use Moose;
with 'InnerRole';
1;
package OuterUserBroken;
use Method::Signatures;
use OuterImplementor;
1;
package OuterUserWorks;
use OuterImplementor;
use Method::Signatures;
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment