2018-08-08 07:28:26 -05:00
|
|
|
error[E0432]: unresolved import `self`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/use-mod-2.rs:2:16
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use self::{self};
|
|
|
|
| ^^^^ no `self` in the root
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `super`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/use-mod-2.rs:6:17
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use super::{self};
|
|
|
|
| ^^^^ no `super` in the root
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|