summaryrefslogtreecommitdiff
path: root/t/lib/T/Impl2.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/T/Impl2.pm')
-rw-r--r--t/lib/T/Impl2.pm18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/lib/T/Impl2.pm b/t/lib/T/Impl2.pm
new file mode 100644
index 0000000..7de6c47
--- /dev/null
+++ b/t/lib/T/Impl2.pm
@@ -0,0 +1,18 @@
+package T::Impl2;
+
+use strict;
+use warnings;
+
+sub return_42 {
+ return 42;
+}
+
+sub return_package {
+ return __PACKAGE__;
+}
+
+our $SCALAR = 42;
+our @ARRAY = ( 1, 2, 3 );
+our %HASH = ( key => 'val' );
+
+1;