Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RT #61844, (0,1)[*-1..*]
  • Loading branch information
moritz committed Oct 16, 2011
1 parent ab29e7a commit 575ea0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion S02-types/whatever.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 74;
plan 75;

# L<S02/The Whatever Object/"The * character as a standalone term captures the notion of">
# L<S02/Native types/"If any native type is explicitly initialized to">
Expand Down Expand Up @@ -60,6 +60,8 @@ isa_ok (1..*-1)(10), Range, '(1..*-1)(10) is a Range';
my @a = 1 .. 4;
is @a[1..*], 2..4, '@a[1..*] skips first element, stops at last';
is @a, 1..4, 'array is unmodified after reference to [1..*]';
# RT #61844
is (0, 1)[*-1..*], 1, '*-1..* lives and clips to range of Parcel';
}

# RT #68894
Expand Down
2 changes: 1 addition & 1 deletion S06-advanced/return.t
Expand Up @@ -312,7 +312,7 @@ is Foo::official(), 44,
# RT #61732
{
sub rt61732_c { 1; CATCH {} }
#?rakudo skip 'RT 61732'
#?rakudo todo 'RT 61732'
is rt61732_c(), 1, 'sub with empty catch block returns value before block';
}

Expand Down

0 comments on commit 575ea0a

Please sign in to comment.