2020-08-27 12:27:14 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `nope`
|
2019-09-14 23:26:49 +00:00
|
|
|
--> $DIR/conflicting-impl-with-err.rs:4:11
|
|
|
|
|
|
|
|
|
LL | impl From<nope::Thing> for Error {
|
2020-08-27 12:27:14 +00:00
|
|
|
| ^^^^ use of undeclared crate or module `nope`
|
2019-09-14 23:26:49 +00:00
|
|
|
|
2020-08-27 12:27:14 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `nope`
|
2019-09-14 23:26:49 +00:00
|
|
|
--> $DIR/conflicting-impl-with-err.rs:5:16
|
|
|
|
|
|
|
|
|
LL | fn from(_: nope::Thing) -> Self {
|
2020-08-27 12:27:14 +00:00
|
|
|
| ^^^^ use of undeclared crate or module `nope`
|
2019-09-14 23:26:49 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|