Skip to content

Instantly share code, notes, and snippets.

@barefootcoder
Created March 29, 2012 22:15
Show Gist options
  • Save barefootcoder/2244291 to your computer and use it in GitHub Desktop.
Save barefootcoder/2244291 to your computer and use it in GitHub Desktop.
This demonstrates an error I'm getting in my code relating to Method::Signature's use of a %args variable.
use MooseX::Declare;
use Method::Signatures::Modifiers;
class foo
{
method glitch (:$foo)
{
my %args;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment