[perl #121117] Dispatch weirdness in REPL

2016-07-27 Thread Will Coleda via RT
On Thu Jan 30 07:15:52 2014, pmichaud wrote: > On Wed, Jan 29, 2014 at 06:14:38PM -0800, Mark E. Shoulson wrote: > > Consider: > > > > multi sub f1(Any $x) { "Any $x" } > > multi sub f2(Any $x) { f1($x) } > > multi sub f1(Rat $x) { "Rat $x" } > > > > say f2("a"); > > say f2(1.9); > > say f1(1.9);

[perl #121117] Dispatch weirdness in REPL

2014-01-30 Thread Mark E. Shoulson
# New Ticket Created by Mark E. Shoulson # Please include the string: [perl #121117] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/Ticket/Display.html?id=121117 Consider: multi sub f1(Any $x) { Any $x } multi sub f2(Any $x) { f1($x) }