xref: /openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t/501-t-compile.t (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
1#!/usr/bin/perl
2use strict;
3BEGIN {
4	$|  = 1;
5	$^W = 1;
6}
7
8use Test::More tests => 2;
9
10# Check their perl version
11ok( $] >= 5.006001, "Your perl is new enough" );
12
13# Does the module load
14use_ok( 'ExtUtils::Typemaps'   );
15