File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
compiler/rustc_error_codes/src/error_codes Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ #### Note: this error code is no longer emitted by the compiler.
2+
13The ` self ` import appears more than once in the list.
24
35Erroneous code example:
46
5- ``` compile_fail,E0430
7+ ``` ignore (error is no longer emitted)
68use something::{self, self}; // error: `self` import can only appear once in
79 // the list
810```
Original file line number Diff line number Diff line change 1+ #### Note: this error code is no longer emitted by the compiler.
2+
13An invalid ` self ` import was made.
24
35Erroneous code example:
46
5- ``` compile_fail,E0431
7+ ``` ignore (error is no longer emitted)
68use {self}; // error: `self` import can only appear in an import list with a
79 // non-empty prefix
810```
You can’t perform that action at this time.
0 commit comments