in reply to Re^2: object creation
in thread object creation

Runs fine for me:

C:\strawberry-perl-5.16.3.1-64bit-portable\scripts>perl -d -e "use DB; + print $INC{'DB.pm'};" Loading DB routines from perl5db.pl version 1.37 Editor support available. Enter h or 'h h' for help, or 'perldoc perldebug' for more help. C:/strawberry-perl-5.16.3.1-64bit-portable/perl/lib/DB.pm

Replies are listed 'Best First'.
Re^4: object creation
by LanX (Saint) on May 22, 2013 at 16:27 UTC
    Sorry I was talking about the OP's project, not your snippet.

    Manipulating DB:: means sabotaging the debugger, which is activated with '-d'.

    Cheers Rolf

    ( addicted to the Perl Programming Language)

      Thanks I rename my module and it's working fine right now. Cheers

      So the minimum change he has to do is to rename his module?

        yep!

        Cheers Rolf

        ( addicted to the Perl Programming Language)