Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6056035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:19:53+00:00 2026-05-23T08:19:53+00:00

Perl usually complains about the line with the actual error, e.g. when a variable

  • 0

Perl usually complains about the line with the actual error, e.g. when a variable is used only once:

use warnings;
if ( 0 ) {
} elsif ( $test ) { } # line 3
# Name "main::test" used only once: possible typo at testt.pl line 3.

This does not work for warnings on use of uninitialized $_:

use warnings;
if ( 0 ) { # line 2
} elsif ( chomp ) { }
# Use of uninitialized value $_ in scalar chomp at testt.pl line 2.

use warnings;
if ( 0 ) { # line 2
} elsif ( m/test/ ) { }
# Use of uninitialized value $_ in pattern match (m//) at testt.pl line 2.

What causes this? When would this behaviour be useful?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T08:19:54+00:00Added an answer on May 23, 2026 at 8:19 am

    perldoc perl5101delta:

    The line numbers for warnings inside
    elsif are now correct.

    Note that this change only affects elsif; you will still see runtime errors/warnings give the beginning or ending line number of the statement instead of the actual line of the offending code:

    $ perl
    use warnings;
    0 ? do {
    } : $test ? do {
    } : do { };
    
    0 ? do {
    } : chomp() ? do {
    } : do { };
    Name "main::test" used only once: possible typo at - line 3. # correct
    Use of uninitialized value $_ in scalar chomp at - line 8.   # incorrect
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

With warnings enabled, perl usually prints Use of uninitialized value $foo if $foo is
I would like to call a java class from perl. I usually use the
Usually to get the output of a command I run from perl I use
I usually use perl -de 42 for obtaining an interactive Perl shell. I have
I'm trying to understand a particular Perl code from vcake . Usually I find
Perl has OOP features, but they are somewhat rarely used. How do you create
I am writing Perl scripts and when I have too many functions, I usually
How do perl strings represented internally? What encoding is used? How do I handle
cpan fails with this weird error as follows Error: Unable to locate installed Perl
I usually do this in Perl: whatever.pl while(<>) { #do whatever; } then cat

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.