summaryrefslogtreecommitdiffstats
path: root/t/base2/Foo.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/base2/Foo.pm')
-rw-r--r--t/base2/Foo.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/base2/Foo.pm b/t/base2/Foo.pm
new file mode 100644
index 0000000..cfb1bb4
--- /dev/null
+++ b/t/base2/Foo.pm
@@ -0,0 +1,9 @@
+package Foo;
+use strict;
+use warnings;
+
+use base 'Bar';
+
+sub foo { "foo" }
+
+1;