summaryrefslogtreecommitdiff
path: root/t/op/hash.t
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-11-27 13:02:49 -0800
committerFather Chrysostomos <sprout@cpan.org>2010-11-27 13:17:51 -0800
commit3349954c325d8917b11f4bf86c2b1c66d2c8ecaf (patch)
tree823f6020ff1b5716d9eccf47460e6647cc159436 /t/op/hash.t
parent3e1892cc8d6022664f01f9119761911b28090cf1 (diff)
downloadperl-3349954c325d8917b11f4bf86c2b1c66d2c8ecaf.tar.gz
Suppress test warning added by 04698ff6
Diffstat (limited to 't/op/hash.t')
-rw-r--r--t/op/hash.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/hash.t b/t/op/hash.t
index fe8a856f19..278bea7e14 100644
--- a/t/op/hash.t
+++ b/t/op/hash.t
@@ -142,7 +142,7 @@ is($destroyed, 1, 'Timely hash destruction with lvalue keys');
sub FETCH { $key = $_[1] }
package main;
tie my %h, "bar";
- $h{\'foo'};
+ () = $h{\'foo'};
is ref $key, SCALAR =>
'hash keys are not stringified during compilation';
}