Created
January 31, 2013 01:14
-
-
Save riywo/4679006 to your computer and use it in GitHub Desktop.
use parent in the same script in Perl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use B; | |
B->new(); | |
#------------------------------- | |
package A; | |
package B; | |
use parent qw/A/; # fail | |
use parent qw/-norequire A/ # true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment