Make the fat comma test more pathological.
Florian Ragwitz [Thu, 13 Aug 2009 21:20:33 +0000 (23:20 +0200)]
t/no-bareword.t

index 80f9b0d..9032aaf 100644 (file)
@@ -22,7 +22,12 @@ BEGIN {
 Foo->method;
 BEGIN { is($i, 0) }
 
-my @foo = (method => 123);
+my @foo = (
+    method
+    =>
+    123
+);
+
 TODO: {
     BEGIN {
         local $TODO = 'fat commas not quoting barewords';