Subject: | TIEHANDLE requires a "*" in next Perl version |
In Perl 5.16, if you want to tie a glob copy as a handle, you need to
explicitly denote *foo or *$foo in the tie statement. Thus,
tie $self, 'Net::Server::Proto::Coro::FH', fh => $fh, @_;
should become
tie *$self, 'Net::Server::Proto::Coro::FH', fh => $fh, @_;
Please be sure to release this change before Perl 5.14 comes out. Also
sooner would help the core perl devs use your module. Thanks