You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assume we have rand = "0.6.1" dependency in Cargo.toml. On Rust 2015 the following example works well
fn main() {
let _ = rand::thread_rng();
}
but the following doesn't.
use rand::thread_rng;
fn main() {
let _ = thread_rng();
}
On Rust 2018 both examples are totally ok (as expected).
Why do we need "extern crate rand" for the second case but not for the first? Are there any reasons for such inconsistency?
Assume we have
rand = "0.6.1"
dependency in Cargo.toml. On Rust 2015 the following example works wellbut the following doesn't.
On Rust 2018 both examples are totally ok (as expected).
Why do we need "extern crate rand" for the second case but not for the first? Are there any reasons for such inconsistency?
The text was updated successfully, but these errors were encountered: