This is an automatically generated mail to inform you that tests are now
available in t/spec/S06-signature/named-parameters.t
commit b0576f2c9b411cd079e5716c279b1173d6288b6a
Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date: Sat Aug 1 04:30:03 2009 +0000
[t/spec] Test for RT #68086
git-svn-id: http://svn.pugscode.org/p...@27826
c213334d-75ef-0310-aa23-eaa082d1ae64
diff --git a/t/spec/S06-signature/named-parameters.t
b/t/spec/S06-signature/named-parameters.t
index 4561efb..83efe31 100644
--- a/t/spec/S06-signature/named-parameters.t
+++ b/t/spec/S06-signature/named-parameters.t
@@ -1,7 +1,7 @@
use v6;
use Test;
-plan 75;
+plan 76;
# L<S06/Required parameters/"Passing a named argument that cannot be bound to
# a normal subroutine is also a fatal error.">
@@ -217,5 +217,7 @@ ok(%fellowship<dwarf> ~~ undef, "dwarf arg was not given");
dies_ok { renames(:x(23)) }, 'old name is not available';
}
+#?rakudo todo 'RT #68086'
+eval_dies_ok 'sub rt68086( $a, $a ) { }', 'two sub params with the same name';
# vim: ft=perl6