1▶#### Note: this error code is no longer emitted by the compiler.
2
3You can't import a type or module when the name of the item being imported is
· · ·
4the same as another type or submodule defined in the module.
5
6▶An example of this error:
7
8```compile_fail
· · ·
9▶use foo::Bar; // error
10
11type Bar = u32;