This is an automatically generated mail to inform you that tests are now
available in t/spec/S02-builtin_data_types/whatever.t
commit 18e190b9d24f2e3a65293db5821631447b06b6bd
Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date: Sun Oct 11 22:25:40 2009 +0000
[t/spec] Test for RT 65482
git-svn-id: http://svn.pugscode.org/p...@28763
c213334d-75ef-0310-aa23-eaa082d1ae64
diff --git a/t/spec/S02-builtin_data_types/whatever.t
b/t/spec/S02-builtin_data_types/whatever.t
index a7f3de5..256cb3b 100644
--- a/t/spec/S02-builtin_data_types/whatever.t
+++ b/t/spec/S02-builtin_data_types/whatever.t
@@ -1,7 +1,7 @@
use v6;
use Test;
-plan 24;
+plan *;
# L<S02/Built-In Data Types/"The * character as a standalone term captures the
notion of">
# L<S02/Native types/"If any native type is explicitly initialized to">
@@ -89,4 +89,9 @@ is @a, [1,2,3,4], '*.meth created closure works';
is $c(-3), 6, '... that respects precdence';
}
+#?rakudo todo 'RT 65482'
+is (0,0,0,0,0,0) >>+>> ((1,2) xx *), <1 2 1 2 1 2>, 'xx * works';
+
+done_testing;
+
# vim: ft=perl6