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