mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
error: imports need to be explicitly named
|
|
--> $DIR/E0431.rs:1:6
|
|
|
|
|
LL | use {self};
|
|
| ^^^^
|
|
|
|
|
help: try renaming it with a name
|
|
|
|
|
LL | use {self as name};
|
|
| +++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|