auto merge of : aepsil0n/rust/fix/pub_randbigint, r=huonw

Closes .

Test suite did not capture this and can't as long as it is in the same module hierarchy. This is probably something that should be addressed in the future.
This commit is contained in:
bors 2014-02-19 23:21:50 -08:00
commit b5e35736b0

@ -1254,7 +1254,7 @@ impl FromStrRadix for BigInt {
}
}
trait RandBigInt {
pub trait RandBigInt {
/// Generate a random `BigUint` of the given bit size.
fn gen_biguint(&mut self, bit_size: uint) -> BigUint;