This is an automatically generated mail to inform you that tests are now
available in t/spec/S03-metaops/hyper.t
commit 48c239ec94925a836af68bc090f38378cb3b4f4b
Author: radus <ra...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date: Sat Aug 7 17:31:04 2010 +0000
[t/spec] Added test for RT 77010 use hypers with local scoped user defined
operators.
git-svn-id: http://svn.pugscode.org/p...@31921
c213334d-75ef-0310-aa23-eaa082d1ae64
diff --git a/t/spec/S03-metaops/hyper.t b/t/spec/S03-metaops/hyper.t
index 076a726..0d09abd 100644
--- a/t/spec/S03-metaops/hyper.t
+++ b/t/spec/S03-metaops/hyper.t
@@ -708,6 +708,14 @@ my @e;
is ~...@r, ~...@e, 'dwimmy hyper extends lists ending with * by copying
the last element';
}
+# RT #77010
+
+#?rakudo skip 'RT 77010 - use hypers with local scoped user-defined operators'
+{
+ sub infix:<+++>($a, $b) { ($a + $b) div 2 };
+ eval_lives_ok '10 >>+++<< 14', 'can use hypers with local scoped
user-defined operators';
+}
+
done_testing;
# vim: ft=perl6