From: Nicholas Clark Date: Mon, 17 Oct 2005 14:44:59 +0000 (+0000) Subject: Correct precedence from and to && in an expression with assignment. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=16fa893905d221693a5e0a95ba525247aa3d7a04;p=p5sagit%2Fp5-mst-13.2.git Correct precedence from and to && in an expression with assignment. p4raw-id: //depot/perl@25781 --- diff --git a/ext/IO/t/io_sock.t b/ext/IO/t/io_sock.t index 918e96b..70a42e9 100755 --- a/ext/IO/t/io_sock.t +++ b/ext/IO/t/io_sock.t @@ -28,7 +28,7 @@ BEGIN { } } -my $has_perlio = $] >= 5.008 and find PerlIO::Layer 'perlio'; +my $has_perlio = $] >= 5.008 && find PerlIO::Layer 'perlio'; $| = 1; print "1..26\n";