in reply to Re: Re: Re: Problems with unopened filehandle after upgrade to ActivePerl 5.6.1
in thread Problems with unopened filehandle after upgrade to ActivePerl 5.6.1
#### in 5.6.1 *F works, but \*F fails % perl5.6.1 -we'{local *F; $tmp=*F; open F,">out"} print $tmp $tmp'; % cat out *main::F % perl5.6.1 -we'{local *F; $tmp=\*F; open F,">out"} print $tmp $tmp'; print() on unopened filehandle F at -e line 1.
-Blake
|
|---|