summaryrefslogtreecommitdiffstats
path: root/t/04/Bar.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-12-19 14:02:23 -0600
committerJesse Luehrs <doy@tozt.net>2011-12-19 14:03:29 -0600
commitcb8ebfeb3c38036bb8dd0b5b7d0fcd4274101ffa (patch)
tree1defd1e72b84f795bf5756cd96e99dba7eb20af7 /t/04/Bar.pm
parent9963fffa42a8de2e5e5311db2bd892905f0160e1 (diff)
downloadcircular-require-cb8ebfeb3c38036bb8dd0b5b7d0fcd4274101ffa.tar.gz
circular-require-cb8ebfeb3c38036bb8dd0b5b7d0fcd4274101ffa.zip
fix for use base (Exodist)
Diffstat (limited to 't/04/Bar.pm')
-rw-r--r--t/04/Bar.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/04/Bar.pm b/t/04/Bar.pm
new file mode 100644
index 0000000..207dc68
--- /dev/null
+++ b/t/04/Bar.pm
@@ -0,0 +1,7 @@
+package Bar;
+use strict;
+use warnings;
+
+sub bar { "bar" }
+
+1;