Fix RT #54203 (reported by chocolateboy) that setters might return undef.
[gitmo/Mouse.git] / benchmarks / modifiers.pl
index d8b286f..aa041c6 100644 (file)
@@ -54,7 +54,7 @@ sub around{
 {
     package MouseClass;
     use parent -norequire => qw(Base);
-    use Moose;
+    use Mouse;
 
     before f => sub{ $i++ };
     around g => \&main::around;