http://www.perlmonks.org?node_id=985730


in reply to Re^2: checking bareword-filehandle
in thread checking bareword-filehandle

seems not to work in my old Perl (5.8.8):
use strict; use warnings; no warnings qw(unopened); open HUBBA, "/hubba"; print HUBBA "hubba";
Produces a warning "print() on closed filehandle HUBBA at t line 6."

Guess I have to disable all warnings...