rust/tests/ui/coherence/conflicting-impl-with-err.stderr

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

16 lines
570 B
Plaintext
Raw Normal View History

2020-08-27 12:27:14 +00:00
error[E0433]: failed to resolve: use of undeclared crate or module `nope`
--> $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`
2020-08-27 12:27:14 +00:00
error[E0433]: failed to resolve: use of undeclared crate or module `nope`
--> $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`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0433`.