diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-08-05 12:28:51 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-08-05 16:02:16 -0700 |
commit | 2e4e39b1f407dc989ac979c5aa00bd8a77f7c129 (patch) | |
tree | 850e813227b81745655fb601629180aabbbf17f6 /t | |
parent | ee23553f1b79f6259f9464480592b43a0c56e745 (diff) | |
download | perl-2e4e39b1f407dc989ac979c5aa00bd8a77f7c129.tar.gz |
parser.t: Move tests above ‘Add tests here’
Diffstat (limited to 't')
-rw-r--r-- | t/comp/parser.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/comp/parser.t b/t/comp/parser.t index 9ae7b75d78..ac6742e103 100644 --- a/t/comp/parser.t +++ b/t/comp/parser.t @@ -366,8 +366,6 @@ eval q{ }; is($@, "", "multiline whitespace inside substitute expression"); -# Add new tests HERE: - eval '@A =~ s/a/b/; # compilation error sub tahi {} sub rua; @@ -390,6 +388,8 @@ is $::{waru}, undef, 'sub w attr+proto ignored after compilation error'; is $::{iwa}, undef, 'non-empty sub decl ignored after compilation error'; is *BEGIN{CODE}, undef, 'BEGIN leaves no stub after compilation error'; +# Add new tests HERE (above this line) + # bug #74022: Loop on characters in \p{OtherIDContinue} # This test hangs if it fails. eval chr 0x387; |