summaryrefslogtreecommitdiff
path: root/t/io/print.t
diff options
context:
space:
mode:
Diffstat (limited to 't/io/print.t')
-rw-r--r--t/io/print.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/io/print.t b/t/io/print.t
index 321eb1e85b..00ee7fb591 100644
--- a/t/io/print.t
+++ b/t/io/print.t
@@ -10,7 +10,7 @@ BEGIN {
use strict 'vars';
-print "1..21\n";
+print "1..23\n";
my $foo = 'STDOUT';
print $foo "ok 1\n";
@@ -66,3 +66,8 @@ if (!exists &Errno::EBADF) {
map print(+()), ('')x68;
print "ok 21\n";
}
+
+# printf with %n
+my $n = "abc";
+printf "ok 22%n - not really a test; just printing\n", substr $n,1,1;
+print "not " x ($n ne "a5c") . "ok 23 - printf with %n (got $n)\n";