Hi Henning, Perl-Monks,

we just encountered the same problem. I think it's a bug in the Perl compiler as constant.pm does not do anything illegal concerning the symbol table.

And just compiling the index function should not have an effect of the contents of the symbol table.

Here's a short script to verify the error. Also includes a Workaround to use the "&" prefix for the constant when used inside the index call.

#!/usr/bin/perl use strict; use warnings; use constant ABC => 'abc'; use constant CDE => 'cde'; use Data::Dumper; # print the constants value before the sub below has been compiled # results in $VAR1 = 'abc' BEGIN { print Dumper( ABC ); print Dumper( CDE ); } # this is in a sub to show that it's not necessary # to actually call index to change the constants behaviour sub some1 { index( shift, ABC ) }; # prefixing the constant with an "&" prevents the error sub some2 { index( shift, &CDE ) }; # print the constants value after sub some has beenn compiled # results in $VAR1 = *bc; print Dumper( ABC ); print Dumper( CDE );
We don't use index a lot, but would be nice to see this fixed. Cheers, Stefan Riss

In reply to Re: constant.pm + index() + Pod::Coverage crashes on Perl 5.10 by Anonymous Monk
in thread constant.pm + index() + Pod::Coverage crashes on Perl 5.10 by hma

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.