8297382: Test fails to compile after JDK-8288047

Reviewed-by: chagedorn
This commit is contained in:
Tobias Hartmann 2022-11-22 09:25:44 +00:00
parent 6d6046b379
commit 42c2037429

@ -155,6 +155,11 @@ public class BigIntegerModuloP implements IntegerFieldModuloP {
public void asByteArray(byte[] result) {
bigIntAsByteArray(v, result);
}
@Override
public long[] getLimbs() {
return null;
}
}
private class ImmutableElement extends Element