Drop "v" prefix from sprintf("%vd", $^V).
[p5sagit/p5-mst-13.2.git] / t / op / sprintf.t
index 7d35cb2..6cd9ec3 100755 (executable)
@@ -241,6 +241,8 @@ __END__
 >%+vd<      >chr(1)<      >+1<
 >%#vd<      >chr(1)<      >1<
 >%vd<       >"\01\02\03"< >1.2.3<
+>%vd<       >v1.2.3<      >1.2.3<
+>%vd<       >[version::qv("1.2.3")]< >1.2.3<
 >%v.3d<     >"\01\02\03"< >001.002.003<
 >%0v3d<     >"\01\02\03"< >001.002.003<
 >%-v3d<     >"\01\02\03"< >1  .2  .3  <