1#!./perl
2
3BEGIN {
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;
12isa_ok( qr//, "Regexp" );
13