Files
rust/tests/ui/error-codes/E0431.stderr
T
2026-02-20 10:58:58 +08:00

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