# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127493] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=127493 >
Some tests in S32-num/power.t are assuming that big int exponents should result in Inf. This, however, is not true anymore. It should throw X::Numeric::Exception (it is already so on moar). Code: my $big-e = 4553535345364535345634543534; say 2 ** $big-e Result: Inf Expected result: X::Numeric::Exception thrown. See https://github.com/perl6/roast/pull/96 for more info.