diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-12-27 20:54:01 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-12-27 21:12:13 +0000 |
commit | 1e9bd1186a044d6e3506ed14fbe055b8f75f7641 (patch) | |
tree | 028b14693219816423205ba65c6c35edfeb166c4 /t/mro | |
parent | 9953ff723fac897df4afc6a69aaa7bfe5e8dc983 (diff) | |
download | perl-1e9bd1186a044d6e3506ed14fbe055b8f75f7641.tar.gz |
Move all mro:: XS functions from mro.c to ext/mro/mro.xs, except for
mro::method_changed_in(), which is used by constant.
Diffstat (limited to 't/mro')
-rw-r--r-- | t/mro/pkg_gen.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/mro/pkg_gen.t b/t/mro/pkg_gen.t index e1f5eb0e8a..0d319fad48 100644 --- a/t/mro/pkg_gen.t +++ b/t/mro/pkg_gen.t @@ -6,6 +6,8 @@ use warnings; chdir 't' if -d 't'; require q(./test.pl); plan(tests => 7); +require mro; + { package Foo; our @ISA = qw//; |