about summary refs log tree commit diff
path: root/tests/ui/delegation/glob-bad-path.stderr
blob: 15d9ca412033213b69779de0a1958678c75f670b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: expected trait, found struct `S`
  --> $DIR/glob-bad-path.rs:9:11
   |
LL |     reuse S::*;
   |           ^ not a trait

error[E0433]: failed to resolve: use of unresolved module or unlinked crate `unresolved`
  --> $DIR/glob-bad-path.rs:8:11
   |
LL |     reuse unresolved::*;
   |           ^^^^^^^^^^ use of unresolved module or unlinked crate `unresolved`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0433`.