-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can haz two identcal variables in my parameter list, and Rakudo doesn't complain even a little! #1187
Comments
From @masak<masak> rakudo: sub foo($a, $a) { say $a }; foo(42, 5) |
From @kylehaThis is an automatically generated mail to inform you that tests are now available in t/spec/S06-signature/named-parameters.t commit b0576f2c9b411cd079e5716c279b1173d6288b6a [t/spec] Test for RT #68086 Inline Patchdiff --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 |
The RT System itself - Status changed from 'new' to 'open' |
From @moritzfixed, test pass... |
@moritz - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#68086 (status was 'resolved')
Searchable as RT68086$
The text was updated successfully, but these errors were encountered: