This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove IGNORABLE files from ExtUtils-Install as per 8db6555210
[perl5.git] / lib / Tie / Scalar.t
index a8e803d..9be536f 100644 (file)
@@ -22,7 +22,7 @@ use Test::More tests => 16;
 use_ok( 'Tie::Scalar' );
 
 # these are "abstract virtual" parent methods
-for my $method qw( TIESCALAR FETCH STORE ) {
+for my $method (qw( TIESCALAR FETCH STORE )) {
        eval { Tie::Scalar->$method() };
        like( $@, qr/doesn't define a $method/, "croaks on inherited $method()" );
 }