Fix warning code in Perl_sv_vcatpvfn() to make the TODO
[p5sagit/p5-mst-13.2.git] / t / op / qr.t
CommitLineData
9bc340e7 1#!./perl -w
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
8
5c35adbb 9plan tests => 1;
9bc340e7 10
11my $rx = qr//;
12
13is(ref $rx, "Regexp", "qr// blessed into `Regexp' by default");