# New Ticket Created by  Hanno Hecker 
# Please include the string:  [perl #68290]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=68290 >



$ cat test.p6
use v6;
class A { sub a { say "a" }; sub a { say "a" } }
grammar B { token b { 'b' }; token b { 'b' } };
class C { method c { say "c" }; method c { say "c" } }
### vim: ft=perl6 ts=4 sw=4 expandtab
$ ./perl6 test.p6 
Redefinition of routine a
$

Reply via email to