# New Ticket Created by Hojung Yoon # Please include the string: [perl #67024] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=67024 >
<amoc> rakudo: class A { method foo() {say 'no argument~'}; method foo($a) { $a.say }}; my $o = A.new; $o.foo(1); $o.foo(); <p6eval> rakudo 6c43f9: OUTPUT«1too few arguments passed (1) - 3 params expectedin method A::foo (/tmp/llOR59FON7:2)called from Main (/tmp/llOR59FON7:2)» <moritz_> amoc: the error is that rakudo should complain about re-defintion of non-multi method