Help for this page
Test->new(); # Calls Obj::new Test::new(); # Fails $Test::$foo; # Fails for the same reason that Test::new did
sub test { my $self = shift; ... } print $Name; }