# New Ticket Created by Stephane Payrard # Please include the string: [perl #76486] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=76486 >
$ cat mmd.pm6 multi sub a([]) { say "[]" } multi sub a([$i]) { say "[$i]" } a(); a([1]); $ perl6 mmd.pm6 No applicable candidates found to dispatch to for 'a'. Available candidates are: :(Positional ()) :(Positional (Any $i)) in main program body at line 3:mmd.pm6 $ This makes impossible shape based pattern matching. -- cognominal stef