On Mon, 2005-06-20 at 16:04 -0600, Aaron Scott wrote: > For a file /path/to/SomeDir/MyPackage.pm, if I 'use MyPackage;' in one > file, then subsequently 'use SomeDir::MyPackage' in another file, the > second 'use' generates redefined subroutine errors.
But those should be two totally separate files with separate package declarations at the top. It doesn't make sense that there would be any namespace collisions. - Perrin