Message-ID: <
20011116030139.6821.qmail@onion.perl.org>
p4raw-id: //depot/perl@13037
local $!;
$stat = stat '/notafile';
-like( $!, qr/^No such file/,
- "should leave 'No such file' error in \$! with invalid file" );
+isn't( $!, '', 'should populate $!, given invalid file' );
# Testing pretty much anything else is unportable.