On Mon Nov 24 07:52:42 2008, masak wrote: > $ perl6 -c -e 'my $a; $a .= "A"' > Method 'panic' not found for invocant of class 'PGE;Match' > > I inadvertently wrote this when meaning '~='. It would probably be a > good thing to emit a helpful error message in this case. (Unless it's > legal Perl 6, which STD doesn't think it is.) > > Note that Rakudo (r33067) dies here during compilation, trying to find > a missing method 'panic'. > Aye, and that method panic was being called to give a helpful error message! :-) Fixed things up now (r33221) so we call panic on something that knows how to.
Thanks, Jonathan