about summary refs log tree commit diff
path: root/tests/ui/coherence/conflicting-impl-with-err.stderr
blob: 75a201797b551ed1dc02d6345eead79a87da4f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nope`
  --> $DIR/conflicting-impl-with-err.rs:4:11
   |
LL | impl From<nope::Thing> for Error {
   |           ^^^^ use of unresolved module or unlinked crate `nope`
   |
   = help: you might be missing a crate named `nope`

error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nope`
  --> $DIR/conflicting-impl-with-err.rs:5:16
   |
LL |     fn from(_: nope::Thing) -> Self {
   |                ^^^^ use of unresolved module or unlinked crate `nope`
   |
   = help: you might be missing a crate named `nope`

error: aborting due to 2 previous errors

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