blob: 83b2bebca11b9f0f186a844c832e9f7f3d5668d6 [file] [log] [blame] [view]
#### Note: this error code is no longer emitted by the compiler.
The `self` import appears more than once in the list.
Erroneous code example:
```ignore (error is no longer emitted)
use something::{self, self}; // error: `self` import can only appear once in
// the list
```
Please verify you didn't misspell the import name or remove the duplicated
`self` import. Example:
```
# mod something {}
# fn main() {
use something::{self}; // ok!
# }
```