-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Wrong suggestion in module declaration error message #38110
Comments
fabric-and-ink
changed the title
Wrong suggestion in module declaration error
Wrong suggestion in module declaration error message
Dec 1, 2016
@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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in 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: