Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strange "no extern crate" behavior on Rust 2015 #56920

Closed
Disasm opened this issue Dec 17, 2018 · 3 comments
Closed

Strange "no extern crate" behavior on Rust 2015 #56920

Disasm opened this issue Dec 17, 2018 · 3 comments

Comments

@Disasm
Copy link
Contributor

Disasm commented Dec 17, 2018

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?

% rustc --version
rustc 1.31.0 (abe02cefd 2018-12-04)
@jsvcycling
Copy link

I get the same result on Rust 2015.

error[E0432]: unresolved import `rand`
 --> src\main.rs:1:5
  |
1 | use rand::thread_rng;
  |     ^^^^ maybe a missing `extern crate rand;`?

It works with extern crate rand; though.

@steveklabnik
Copy link
Member

cc @petrochenkov

@petrochenkov
Copy link
Contributor

Duplicate or #55478 (which has some more detailed explanation).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants