This is an automatically generated mail to inform you that tests are now 
available in t/spec/S02-builtin_data_types/array.t

commit f3c51207d68c790b8ec8c76e9b12470a9490507c
Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date:   Sun May 30 13:50:53 2010 +0000

    [t/spec] test for RT #73308, [][]
    
    git-svn-id: http://svn.pugscode.org/p...@30994 
c213334d-75ef-0310-aa23-eaa082d1ae64

diff --git a/t/spec/S02-builtin_data_types/array.t 
b/t/spec/S02-builtin_data_types/array.t
index 008dd95..f9524ed 100644
--- a/t/spec/S02-builtin_data_types/array.t
+++ b/t/spec/S02-builtin_data_types/array.t
@@ -2,7 +2,7 @@ use v6;
 
 use Test;
 
-plan 95;
+plan 96;
 
 #L<S02/Mutable types/Array>
 
@@ -320,4 +320,9 @@ my @array2 = ("test", 1, Mu);
     dies_ok({push @arr, 4.2}, 'type constraints on my Type @arr[num]  works 
(2)');
 }
 
+# RT #73308
+{
+    is [][].elems, 0, '[][] returns empty list/array';
+}
+
 # vim: ft=perl6

Reply via email to