We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First Example in https://doc.rust-lang.org/reference/visibility-and-privacy.html https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=215908aa41200a4e9ce3841cff3dd978
Compiling playground v0.0.1 (/playground) error[E0432]: unresolved import `crate_helper_module` --> src/lib.rs:22:9 | 22 | use crate_helper_module; | ^^^^^^^^^^^^^^^^^^^ no external crate `crate_helper_module`
This line should be changed to
use crate::crate_helper_module;
The text was updated successfully, but these errors were encountered:
It is currect for the 2015 edition.
Sorry, something went wrong.
I posted #1041 to change things to default to 2018 to fix this.
Successfully merging a pull request may close this issue.
First Example in https://doc.rust-lang.org/reference/visibility-and-privacy.html
https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=215908aa41200a4e9ce3841cff3dd978
This line should be changed to
The text was updated successfully, but these errors were encountered: