./Porting/bisect.pl --target=miniperl --start=v5.16.3 --end=v5.18.0 --expect-fail -e 'sub foo::new {} "::foo"->new'
...

commit 7156e69abfd37267e85105c6ec0c449ce4e41523
Author: Father Chrysostomos <sprout@cpan.org>
Date:   Thu Sep 20 08:56:38 2012 -0700

    [perl #105922] Allow any string before ->meth
    
    The rules for filtering out what do not look like package names are
    not logical and disallow valid things like "::main", while allowing
    q"_#@*$!@*^(".
    
    This commit simply lets any non-empty string be used as a package
    name.  If it is a typo, you’ll get an error anyway.  This allows
    autobox-style calls like "3foo"->CORE::uc, or even "3foo"->uc if you
    set up @ISA first.
    
    I made an exception for the empty string because it messes up caches
    somehow and causes subsequent method calls all to be called on the
    main package.  I haven’t looked into that yet.  I don’t know whether
    it’s worth it.
    
    The changes to the tests in cpan/Test-Simple have been submit-
    ted upstream.

Mentioned in perl5180delta:

Class method calls are now allowed on any string, and not just strings beginning with an alphanumeric character. [perl #105922]

In reply to Re: Change to package name handling in Perl 5.18? by haukex
in thread Change to package name handling in Perl 5.18? by tobyink

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.