Playground:
extern crate rand;
pub fn foo() {
let _ = rand::thread_rng();
}
fn main() {
foo();
}
yet many tests use a random number generator. We might want to intercept the FFI calls involved in this, and do something with them (probably forward them? no idea).