mirror of https://github.com/rust-lang/rust
20 lines
489 B
Plaintext
20 lines
489 B
Plaintext
error[E0429]: `self` imports are only allowed within a { } list
|
|
--> $DIR/use-mod-5.rs:7:13
|
|
|
|
|
LL | use foo::bar::self;
|
|
| ^^^^^^
|
|
|
|
|
help: consider importing the module directly
|
|
|
|
|
LL - use foo::bar::self;
|
|
LL + use foo::bar;
|
|
|
|
|
help: alternatively, use the multi-path `use` syntax to import `self`
|
|
|
|
|
LL | use foo::bar::{self};
|
|
| + +
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0429`.
|