Add a couple of regression tests for the untested
Rafael Garcia-Suarez [Thu, 16 Mar 2006 16:17:38 +0000 (16:17 +0000)]
"Bad name after %s" parsing error

p4raw-id: //depot/perl@27517

t/comp/parser.t

index bbc3c83..0532ab3 100644 (file)
@@ -9,7 +9,7 @@ BEGIN {
 }
 
 require "./test.pl";
-plan( tests => 56 );
+plan( tests => 58 );
 
 eval '%@x=0;';
 like( $@, qr/^Can't modify hash dereference in repeat \(x\)/, '%@x=0' );
@@ -197,3 +197,9 @@ EOF
     like($@, qr/That use of \$\[ is unsupported/,
              'cannot assign list of <1 elements to $[');
 }
+
+# tests for "Bad name"
+eval q{ foo::$bar };
+like( $@, qr/Bad name after foo::/, 'Bad name after foo::' );
+eval q{ foo''bar };
+like( $@, qr/Bad name after foo'/, 'Bad name after foo\'' );