cpanel / perl-compiler

cPanel's custom implementation of B::C
https://cpanel.net
Other
8 stars 3 forks source link

FileHandle open to STDOUT at compile time #63

Open atoomic opened 7 years ago

atoomic commented 7 years ago
my $f ;BEGIN{ open( $f, ">&STDOUT" ) } print $f "ok"

one liner

> perlcc -r -e 'my $f;BEGIN{open($f,">&STDOUT");}print $f "ok"'

issues noticed with xtestc/0932.t and xtestc/0093.t