diff options
author | Todd Rinaldo <toddr@cpan.org> | 2017-11-11 00:42:36 -0600 |
---|---|---|
committer | Todd Rinaldo <toddr@cpan.org> | 2017-11-11 01:07:18 -0600 |
commit | 83461ff88314343113a71164e691909448c35442 (patch) | |
tree | 684cfa4684a5cb5f06398caca1724e696a733003 /t/op/goto_xs.t | |
parent | 3d3a0a8a5e7ee9abf3f3e52e1b63942b8c55a069 (diff) | |
download | perl-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.t | 2 |
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); |