Don't use $_ as loop variable when calling arbitrary code (RT#81072)
[gitmo/Moo.git] / t / lib / UnderscoreClass.pm
diff --git a/t/lib/UnderscoreClass.pm b/t/lib/UnderscoreClass.pm
new file mode 100644 (file)
index 0000000..980b862
--- /dev/null
@@ -0,0 +1,5 @@
+package UnderscoreClass;
+use Moo;
+with qw(UnderscoreRole);
+sub c1 { 'c1' };
+1;