Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
error-codes
/
E0431.stderr
blob: a9604efa0e41dbd39dec254dfe57bf19299a347e [
file
] [
log
] [
blame
] [
edit
]
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