[perl #78738] [BUG] Multiple dispatch on required named param makes 0-parm sub invisible

2011-10-08 Thread Will Coleda via RT
On Sun Oct 31 16:38:58 2010, util wrote: On Rakudo Star 2010-10, this code works as expected, outputting 42\n : multi sub Bar ( ) { return 42 }; say Bar(); This code should give the same output (and *does* on Pugs): multi sub Bar ( ) { return 42 }; multi sub Bar

[perl #78738] [BUG] Multiple dispatch on required named param makes 0-parm sub invisible

2010-10-31 Thread via RT
# New Ticket Created by Bruce Gray # Please include the string: [perl #78738] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=78738 On Rakudo Star 2010-10, this code works as expected, outputting 42\n : multi sub