# New Ticket Created by  Larry Wall 
# Please include the string:  [perl #126003]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=126003 >


> perl6-m -e 'multi sub foo(@array) { say @array }; foo("abc".comb)'
Cannot call foo(Seq); none of these signatures match:
    (@array)
  in block <unit> at -e:1

> perl6-m -e 'sub foo(@array) { say @array }; foo("abc".comb)'
(a b c)

Reply via email to