This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Attempt band-aid fix for win32 build failure
[perl5.git] / dist / ExtUtils-ParseXS / t / 108-map_type.t
CommitLineData
e6de4093
JK
1#!/usr/bin/perl
2use strict;
3use warnings;
4use Carp;
5use Cwd;
6use File::Spec;
7use File::Temp qw( tempdir );
8use Test::More qw(no_plan); # tests => 7;
9use lib qw( lib );
10use ExtUtils::ParseXS::Utilities qw(
11 map_type
12);
13
361d4be6
JK
14#print "\t" . map_type($self->{ret_type}, 'RETVAL', $self->{hiertype}) . ";\n"
15#print "\t" . map_type($var_type, $var_name, $self->{hiertype});
16#print "\t" . map_type($var_type, undef, $self->{hiertype});
17
e6de4093 18pass("Passed all tests in $0");