# New Ticket Created by Andrei Osipov
# Please include the string: [perl #125412]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125412 >
% perl6 -v
This is perl6 version 2015.05-197-g28a7697 built on MoarVM version
2015.05-79
Branch: refs/heads/newio
Home: https://github.com/perl6/specs
Commit: df6900d00cf195a4e1a56f8f012cf0823baccef9
https://github.com/perl6/specs/commit/df6900d00cf195a4e1a56f8f012cf0823baccef9
Author: Moritz Lenz
Date: 2015-05-31 (Sun, 31 May 2015)
Changed paths:
A pod6-fi
On 06/13/2015 04:06 PM, Elizabeth Mattijsen (via RT) wrote:
Hi,
May I react on this? Would it be easier to have perl6 throw an error
when there is a named parameter in the call while it isn't defined in
the method. Something like 'Named parameter 'x' not defined by push' in
the example set bel
# New Ticket Created by Jonathan Stowe
# Please include the string: [perl #125408]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125408 >
Hi,
The following code gives rise to:
Wrong kind of access to numeric CArray
in meth
This works now (with Rakudo commit 28a76979d9):
$ perl6 -e 'say all(1, 2, 3) ~~ Int' ## autothreads
all(True, True, True)
$ perl6 -e 'say all(1, 2, 3) ~~ Junction' ## does not autothread
True
There were tests added with roast commit 53f46867ee.
I'm closing this ticket as resolved.
After Rakudo commit a6d2edc644 this command dies (with X::AdHoc):
$ perl6 -e 'my $f = Sub.new(); say $f'
Cannot make a Sub object using .new
in block at -e:1
I added a test to S06-other/misc.t with commit
https://github.com/perl6/roast/commit/ff2dc709fd
I'm closing this ticket as 'resolved'.
# New Ticket Created by Sam S.
# Please include the string: [perl #125416]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125416 >
An item assignment inside a comma-separated list works as expected as long as
the preceding el
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 750648257c1e67bcec6d44edba327b3f095ad26c
https://github.com/perl6/specs/commit/750648257c1e67bcec6d44edba327b3f095ad26c
Author: pmichaud
Date: 2015-06-15 (Mon, 15 Jun 2015)
Changed paths:
M S07-glr-d