Skip to content

Instantly share code, notes, and snippets.

@Cside
Created October 20, 2012 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cside/3925134 to your computer and use it in GitHub Desktop.
Save Cside/3925134 to your computer and use it in GitHub Desktop.
package A;
use strict;
use warnings;
package B;
use lib '.';
use parent qw(C);
1;
package C;
use strict;
use warnings;
use lib '.';
use A;
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment