summaryrefslogtreecommitdiff
path: root/t/op/switch.t
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2011-09-06 12:16:23 +0100
committerDavid Mitchell <davem@iabyn.com>2011-09-06 12:21:21 +0100
commit87e4a53a894984d98bc11df391f89db73212de5e (patch)
tree9e5b6b48af12325ae3c37f035c35f24438d8c2a0 /t/op/switch.t
parentf5f19483eb9a5629cd2db0902731ca0b471e0adc (diff)
downloadperl-87e4a53a894984d98bc11df391f89db73212de5e.tar.gz
RT #4682: given() didn't scope $_ correctly
given(expr) {...} behaves similarly to { my $_ = expr; ...}, except that, prior to this commit, it wasn't doing the SAVECLEARSV() that pp_padsv would do. This meant that $_ was still marked as stale while in scope, and wasn't getting cleared at the end of scope.
Diffstat (limited to 't/op/switch.t')
-rw-r--r--t/op/switch.t31
1 files changed, 30 insertions, 1 deletions
diff --git a/t/op/switch.t b/t/op/switch.t
index a28655920c..420c6aecfa 100644
--- a/t/op/switch.t
+++ b/t/op/switch.t
@@ -9,7 +9,7 @@ BEGIN {
use strict;
use warnings;
-plan tests => 197;
+plan tests => 201;
# The behaviour of the feature pragma should be tested by lib/feature.t
# using the tests in t/lib/feature/*. This file tests the behaviour of
@@ -1361,6 +1361,35 @@ unreified_check(undef,"");
is "@res", "1", "break resets the stack";
}
+# RT #94682:
+# must ensure $_ is initialised and cleared at start/end of given block
+
+{
+ sub f1 {
+ given(3) {
+ return sub { $_ } # close over lexical $_
+ }
+ }
+ is(f1()->(), 3, 'closed over $_');
+
+ package RT94682;
+
+ my $d = 0;
+ sub DESTROY { $d++ };
+
+ sub f2 {
+ my $_ = 5;
+ given(bless [7]) {
+ ::is($_->[0], 7, "is [7]");
+ }
+ ::is($_, 5, "is 5");
+ ::is($d, 1, "DESTROY called once");
+ }
+ f2();
+}
+
+
+
# Okay, that'll do for now. The intricacies of the smartmatch
# semantics are tested in t/op/smartmatch.t. Taintedness of
# returned values is checked in t/op/taint.t.