Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Last active December 14, 2015 22: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 hoelzro/5160326 to your computer and use it in GitHub Desktop.
Save hoelzro/5160326 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
use v6;
class IssueProperty {
multi method ACCEPTS($) {
False
}
multi method ACCEPTS(Any:U $class: Str $) {
True
}
}
class IssueAssignee is IssueProperty {
}
sub MAIN(Str :$assignee where IssueAssignee) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment