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
use
struct Foo; mod bar { use super::Foo; impl Foo { fn f() { } } }
gives
baz.rs:5:10: 5:13 error: found module name used as a type: impl bar::Foo::Foo (id=8) baz.rs:5 impl Foo { ^~~
when impl super::Foo works fine.
impl super::Foo
rustc 0.11.0 (49bc17b 2014-07-07 17:16:34 +0000)
The text was updated successfully, but these errors were encountered:
See also #16144
Sorry, something went wrong.
Dup of #12729.
Auto merge of rust-lang#16145 - Veykril:span-crate, r=Veykril
0380869
internal: Split out a span crate Allows getting rid of some of the dependency injection generics that my rewrite introduced
No branches or pull requests
gives
when
impl super::Foo
works fine.rustc 0.11.0 (49bc17b 2014-07-07 17:16:34 +0000)
The text was updated successfully, but these errors were encountered: