Subject: | Dubious behaviour with pass_through |
The following works fine :
use Getopt::Long;
GetOptions('foo=s' => \$foo );
i.e. when the command line args are just --foo, it complains as follows :
Option foo requires an argument
However, when pass_through is set, the error is not seen anymore, which
is confusing.