Message-ID: <p5g03wcv38.fsf@de.uu.net>
p4raw-id: //depot/perl@14790
require './test.pl';
}
-plan tests => 1476;
+plan tests => 1477;
use strict;
use warnings;
is(scalar(@y), 2);
is($y[1], 130);
+ $x = pack('w*', 5000000000); $y = '';
+ eval {
+ use Math::BigInt;
+ $y = pack('w*', Math::BigInt::->new(5000000000));
+ };
+ is($x, $y);
}