[perl #88748] [BUG] Rakudo doesn't give a good indication of what's happened when an undeclared type is used in a 'when' clause

2011-04-17 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #88748] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=88748 > rakudo: given 42 { when SomeUndeclaredType { say "OH HAI" }; default { say "OH NOES" }

[perl #88750] [BUG] Can't call an 'our' sub in a role in Rakudo

2011-04-17 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #88750] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=88750 > rakudo: role A { our sub foo { say "OH HAI" } }; A::foo rakudo 5ac05e: OUTPUT«Cannot f