diff options
Diffstat (limited to 't/comp/parser.t')
-rw-r--r-- | t/comp/parser.t | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/t/comp/parser.t b/t/comp/parser.t index b7525003ec..901d66abc6 100644 --- a/t/comp/parser.t +++ b/t/comp/parser.t @@ -8,7 +8,7 @@ BEGIN { chdir 't' if -d 't'; } -print "1..186\n"; +print "1..187\n"; sub failed { my ($got, $expected, $name) = @_; @@ -591,6 +591,14 @@ is $@, "", 'substr keys assignment'; 'RT 128952'; } +# RT #130311: many parser shifts before a reduce + +{ + eval '[' . ('{' x 300); + like $@, qr/Missing right curly or square bracket/, 'RT #130311'; +} + + # Add new tests HERE (above this line) # bug #74022: Loop on characters in \p{OtherIDContinue} |