# New Ticket Created by Zoffix Znet # Please include the string: [perl #127177] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=127177 >
As seen in the examples below, there's no indication where the line with the `use` of a module is located. It might be, for example, left-over debugging code (greppable), a library not under user's control or even a convoluted eval (non-greppable), and it's a useful information to have included. $ perl6 -MGibblets -e '' ===SORRY!=== Could not find Gibblets in: /home/zoffix/.perl6/2015.12-101-g75c6b9e /home/zoffix/.rakudobrew/moar-nom/install/share/perl6/site /home/zoffix/.rakudobrew/moar-nom/install/share/perl6/vendor /home/zoffix/.rakudobrew/moar-nom/install/share/perl6 CompUnit::Repository::AbsolutePath<-1230465572> CompUnit::Repository::NQP<-1230467600> CompUnit::Repository::Perl5<-1230469484> $ perl6 -MMONKEY-SEE-NO-EVAL -e 'my $x = "Gib" ~ "blets"; EVAL "use $x"' ===SORRY!=== Could not find Gibblets in: /home/zoffix/.perl6/2015.12-101-g75c6b9e /home/zoffix/.rakudobrew/moar-nom/install/share/perl6/site /home/zoffix/.rakudobrew/moar-nom/install/share/perl6/vendor /home/zoffix/.rakudobrew/moar-nom/install/share/perl6 CompUnit::Repository::AbsolutePath<-1229261872> CompUnit::Repository::NQP<-1229263900> CompUnit::Repository::Perl5<-1229265784>