mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
483 B
Plaintext
20 lines
483 B
Plaintext
error[E0429]: `self` imports are only allowed within a { } list
|
|
--> $DIR/E0429.rs:1:13
|
|
|
|
|
LL | use std::fmt::self;
|
|
| ^^^^^^
|
|
|
|
|
help: consider importing the module directly
|
|
|
|
|
LL - use std::fmt::self;
|
|
LL + use std::fmt;
|
|
|
|
|
help: alternatively, use the multi-path `use` syntax to import `self`
|
|
|
|
|
LL | use std::fmt::{self};
|
|
| + +
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0429`.
|