Re: [perl #18927] barewords with no errors
Abe Timmerman [Sun, 8 Dec 2002 17:12:56 +0000 (18:12 +0100)]
Message-Id: <200212081712.56102.abe@ztreet.demon.nl>

p4raw-id: //depot/perl@18265

t/lib/strict/subs

index f6e05b3..4516de7 100644 (file)
@@ -354,3 +354,10 @@ print "" if BAREWORD;
 EXPECT
 Bareword "BAREWORD" not allowed while "strict subs" in use at - line 5.
 Execution of - aborted due to compilation errors.
+########
+# Ticket: 18927
+use strict 'subs';
+print 1..1, bad;
+EXPECT
+Bareword "bad" not allowed while "strict subs" in use at - line 3.
+Execution of - aborted due to compilation errors.