Warnings within the condition of while are not reported with the
Nicholas Clark [Sun, 27 Apr 2008 09:21:45 +0000 (09:21 +0000)]
correct line number. TODO test inspired by code from Bram.

p4raw-id: //depot/perl@33756

t/lib/warnings/9uninit

index 570290a..b1c2a4f 100644 (file)
@@ -1332,6 +1332,22 @@ EXPECT
 Use of uninitialized value $undef in numeric eq (==) at - line 4.
 Use of uninitialized value $undef in numeric eq (==) at - line 5.
 ########
+# TODO long standing bug - conditions of while loops
+use warnings;
+
+my $c;
+my $d = 1;
+while ($c == 0 && $d) {
+  # a
+  # few
+  # blank
+  # lines
+  undef $d;
+}
+EXPECT
+Use of uninitialized value $c in numeric eq (==) at - line 5.
+Use of uninitialized value $c in numeric eq (==) at - line 5.
+########
 # TODO long standing bug - more general variant of the above problem
 use warnings;
 my $undef;