This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5db: remove leading ampersand.
[perl5.git] / ext / re / t / qr.t
CommitLineData
192b9cd1
AB
1#!./perl
2
3BEGIN {
192b9cd1
AB
4 require Config;
5 if (($Config::Config{'extensions'} !~ /\bre\b/) ){
6 print "1..0 # Skip -- Perl configured without re module\n";
7 exit 0;
8 }
9}
10
11use Test::More tests => 1;
12use re 'Debug';
13isa_ok( qr//, "Regexp" );