summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/lib/b-deparse.t10
1 files changed, 9 insertions, 1 deletions
diff --git a/t/lib/b-deparse.t b/t/lib/b-deparse.t
index 59f8cbfb4f..048ce31eef 100644
--- a/t/lib/b-deparse.t
+++ b/t/lib/b-deparse.t
@@ -15,7 +15,7 @@ use warnings;
use strict;
use Config;
-print "1..12\n";
+print "1..14\n";
use B::Deparse;
my $deparse = B::Deparse->new() or print "not ";
@@ -166,3 +166,11 @@ $test /= 2 if ++$test;
continue {
123;
}
+####
+# 9
+my $x;
+print $main::x;
+####
+# 10
+my @x;
+print $main::x[1];