Error code E0430

The self import appears more than once in the list.

Erroneous code example:

use something::{self, self}; // error: `self` import can only appear once in
                             //        the list
Run

Please verify you didn’t misspell the import name or remove the duplicated self import. Example:

use something::{self}; // ok!
Run

Back to list of error codes