Skip to content

Commit

Permalink
RT #121365 match negated quatified character class
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Jul 22, 2014
1 parent 55f0db9 commit 046f212
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion S05-mass/charsets.t
Expand Up @@ -4,7 +4,7 @@ use Test;

# L<S05/Extensible metasyntax (C<< <...> >>)/"The special named assertions include">

plan 16;
plan 17;

#?niecza skip 'Tests not completing under niecza'
{
Expand Down Expand Up @@ -48,3 +48,9 @@ plan 16;
is $latin-chars.comb(/<+ :HexDigit - lower >/).join, "0123456789ABCDEF", 'combined unicode and builtins';

}

# RT #121365
{
'o' ~~ /<:!Upper>*/;
is ~$/, 'o', 'Can match negated quantified character class';
}

0 comments on commit 046f212

Please sign in to comment.