We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input:
use strict; use warnings; use feature qw( say ); use Env qw( @PATH ); say for @PATH;
Output:
use strict; use warnings; use feature qw( say ); use Env (); say for @PATH;
It looks like perlimports works with vars.pm, which is probably a similar sort of corner case.
perlimports
vars.pm
The text was updated successfully, but these errors were encountered:
Thanks! I wasn't aware of this issue. Looks like this needs to be special-cased.
Sorry, something went wrong.
Add a test to demonstrate that we can't handle Env.pm
0d5dc22
See #23
Ignore Env.pm for the time being
b127ce3
since we don't know how to handle it. See #23
No branches or pull requests
Input:
Output:
It looks like
perlimports
works withvars.pm
, which is probably a similar sort of corner case.The text was updated successfully, but these errors were encountered: