summary refs log tree commit diff
path: root/src/test/ui/use/use-mod/use-mod-2.stderr
blob: f343dc2b31d423f41bc8387bd167380bcc91c00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0432]: unresolved import `self`
  --> $DIR/use-mod-2.rs:12:16
   |
LL |     use self::{self};
   |                ^^^^ no `self` in the root

error[E0432]: unresolved import `super`
  --> $DIR/use-mod-2.rs:16:17
   |
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`.