Subject: | ":number" broken in 2.48 |
$ perl -E'
use Getopt::Long qw( :config gnu_getopt );
say $Getopt::Long::VERSION;
GetOptions(\my %opts, "c:20");
say $opts{c} // "[undef]"
' -- -c
2.47
20
$ perl -E'
use Getopt::Long qw( :config gnu_getopt );
say $Getopt::Long::VERSION;
GetOptions(\my %opts, "c:20");
say $opts{c} // "[undef]"
' -- -c
2.48
[undef]