Subject: | misinterpreted $^V |
I have this code in my Sys::Info module:
sub perl { defined $^V ? sprintf( '%vd', $^V ) : _legacy_perl( $] ) }
and since I'm checking $^V, it's interpreted as actually using that
variable and this makes the minimum version v5.6.0. I'm not sure how to
fix that since the check related to this is hardcoded in a hash, but
FYI...