Update tests and $VERSION for change 23046
Rafael Garcia-Suarez [Mon, 5 Jul 2004 17:05:55 +0000 (17:05 +0000)]
p4raw-id: //depot/perl@23047

ext/B/B/Deparse.pm
ext/B/t/deparse.t

index adda35f..9ab926b 100644 (file)
@@ -19,7 +19,7 @@ use B qw(class main_root main_start main_cv svref_2object opnumber perlstring
          CVf_METHOD CVf_LOCKED CVf_LVALUE CVf_ASSERTION
         PMf_KEEP PMf_GLOBAL PMf_CONTINUE PMf_EVAL PMf_ONCE PMf_SKIPWHITE
         PMf_MULTILINE PMf_SINGLELINE PMf_FOLD PMf_EXTENDED);
-$VERSION = 0.67;
+$VERSION = 0.68;
 use strict;
 use vars qw/$AUTOLOAD/;
 use warnings ();
index f599a0e..fed9cf0 100644 (file)
@@ -212,9 +212,7 @@ my ($x,@a);
 $x=1 for @a;
 >>>>
 my($x, @a);
-foreach $_ (@a) {
-    $x = 1;
-}
+$x = 1 foreach (@a);
 ####
 # 19
 for (my $i = 0; $i < 2;) {