summaryrefslogtreecommitdiff
path: root/t/op/goto_xs.t
diff options
context:
space:
mode:
authorTodd Rinaldo <toddr@cpan.org>2017-11-11 00:42:36 -0600
committerTodd Rinaldo <toddr@cpan.org>2017-11-11 01:07:18 -0600
commit83461ff88314343113a71164e691909448c35442 (patch)
tree684cfa4684a5cb5f06398caca1724e696a733003 /t/op/goto_xs.t
parent3d3a0a8a5e7ee9abf3f3e52e1b63942b8c55a069 (diff)
downloadperl-83461ff88314343113a71164e691909448c35442.tar.gz
Replace multiple 'use vars' by 'our' in t
Diffstat (limited to 't/op/goto_xs.t')
-rw-r--r--t/op/goto_xs.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/goto_xs.t b/t/op/goto_xs.t
index f7d50b7b00..40579eff97 100644
--- a/t/op/goto_xs.t
+++ b/t/op/goto_xs.t
@@ -18,7 +18,7 @@ BEGIN {
}
use strict;
use warnings;
-use vars '$VALID';
+my $VALID;
plan(tests => 11);