1# -*- mode: perl; -*-
2
3# check that simple requiring Math::BigInt works
4
5use strict;
6use warnings;
7
8use Test::More tests => 1;
9
10require Math::BigInt;
11
12my $x = Math::BigInt->new(1);
13++$x;
14
15is($x, 2, '$x is 2');
16
17# all tests done
18