This is an automatically generated mail to inform you that tests are now 
available in t/spec/S06-signature/slurpy-params.t

commit 42f8eb5b687cfa52c27468f0951a7716d1479144
Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date:   Mon May 31 19:02:27 2010 +0000

    [t/spec] test for RT #61772, *...@a is copy messed up in Rakudo
    
    git-svn-id: http://svn.pugscode.org/p...@31027 
c213334d-75ef-0310-aa23-eaa082d1ae64

diff --git a/t/spec/S06-signature/slurpy-params.t 
b/t/spec/S06-signature/slurpy-params.t
index 4b8e748..f5d3440 100644
--- a/t/spec/S06-signature/slurpy-params.t
+++ b/t/spec/S06-signature/slurpy-params.t
@@ -302,6 +302,16 @@ eval_dies_ok 'sub rt65324(*...@x, $oops) { say $oops }',
     is slurpy-by-name(:var<a v g>), 'a|v|g', 'Can call slurpy param by name';
 }
 
+# RT #61772
+{
+    sub array_slurpy_copy(*...@a is copy) {
+        return @a;
+    }
+    my @array = <a b c>;
+    my @c = array_slurpy_copy(@array);
+    is @c[0], 'a', 'slurpy is copy-array works fine, thank you';
+}
+
 done_testing;
 
 # vim: ft=perl6

Reply via email to