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
This should seemingly go through with no issue, but instead:
rustc output:
foo.rs:6:9: 6:12 error: unresolved import `Vec`. There is no `Vec` in `???`. Did you mean to use `Vec`? [E0432]
foo.rs:6 use Vec;
^~~
foo.rs:6:9: 6:12 help: run `rustc --explain E0432` to see a detailed explanation
error: aborting due to previous error
The text was updated successfully, but these errors were encountered:
emberian
changed the title
Importing reexports does not work
Importing private reexports does not work
Mar 17, 2016
If we don't want to support this feature (which is useful for no_std crates to switch between std modules and non-std modules), the error message should be more specific.
Testcase:
This should seemingly go through with no issue, but instead:
rustc output:
The text was updated successfully, but these errors were encountered: