rust/tests/ui/use/use-mod/use-mod-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
410 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0432]: unresolved import `self`
2018-12-25 15:56:47 +00:00
--> $DIR/use-mod-2.rs:2:16
2018-08-08 12:28:26 +00:00
|
LL | use self::{self};
| ^^^^ no `self` in the root
error[E0432]: unresolved import `super`
2018-12-25 15:56:47 +00:00
--> $DIR/use-mod-2.rs:6:17
2018-08-08 12:28:26 +00: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`.