[perl #95500] [BUG] Subtype based on any(@array) always matches in Rakudo

2011-07-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #95500] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=95500 > I found a bug. :) rakudo: subset Foo of Str where any(); for { when Foo { say "$

[perl #95504] [BUG] Array interpolation in regexes does not match with alternation semantics in Rakudo

2011-07-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #95504] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=95504 > rakudo: $_ = "open"; my @verbs = "open", "close"; say $_ ~~ /^ @verbs/ rakudo 922

[perl #95514] [BUG] Bogus error message about not enough positional parameter when role method calls another after a role method delegation in Rakudo

2011-07-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #95514] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=95514 > rakudo: role R { method foo { self.bar(42) }; method bar($x) { say "OH HAI" } }; c