Subject: | Regression: -input no longer works with __DATA__ with -verbose => 2 |
The following short program works under Pod::Usage 1.16 but fails under
Pod::Usage 1.33. Under the latter, it generates no output. I've been
using the __DATA__ trick to work with PAR for over a year.
-- Chris
use Pod::Usage;
pod2usage(-verbose => 2, -input => \*DATA);
__DATA__
=head1 NAME
Test
=head1 SYNOPSIS
perl podusagetest.pl
=head1 DESCRIPTION
This is a test.