-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Wrong suggestion in module declaration error message #38110
Comments
@jseyfried: Still working on it? |
@GuillaumeGomez no, haven't started yet. |
I opened a PR for it. |
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Apr 25, 2017
…ion, r=jseyfried Invalid module location Fixes rust-lang#38110. r? @jseyfried
frewsxcv
added a commit
to frewsxcv/rust
that referenced
this issue
Apr 26, 2017
…ion, r=jseyfried Invalid module location Fixes rust-lang#38110. r? @jseyfried
frewsxcv
added a commit
to frewsxcv/rust
that referenced
this issue
Apr 26, 2017
…ion, r=jseyfried Invalid module location Fixes rust-lang#38110. r? @jseyfried
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Apr 26, 2017
…ion, r=jseyfried Invalid module location Fixes rust-lang#38110. r? @jseyfried
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Apr 26, 2017
…ion, r=jseyfried Invalid module location Fixes rust-lang#38110. r? @jseyfried
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Maybe this bug is related to #36146.
Library structure
src/lib.rs:
pub mod foo;
src/foo/mod.rs:
pub mod bar;
src/foo/bar.rs
pub mod baz;
Error
Currently:
Should be:
Additionally, I don't understand what to make of the repeated code excerpt.
The text was updated successfully, but these errors were encountered: