Add parens around qw() to avoid warning with 5.14
Dave Rolsky [Sun, 15 May 2011 16:34:46 +0000 (11:34 -0500)]
t/immutable/buildargs.t

index 283ed5c..ee9c08c 100644 (file)
@@ -28,7 +28,7 @@ use Test::More;
     __PACKAGE__->meta->make_immutable;
 }
 
-foreach my $class qw(Foo Bar) {
+foreach my $class (qw(Foo Bar)) {
     is( $class->new->bar, undef, "no args" );
     is( $class->new( bar => 42 )->bar, 42, "normal args" );
     is( $class->new( 37 )->bar, 37, "single arg" );