]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/conflicting-impl-with-err.stderr
Rollup merge of #98391 - joboet:sgx_parker, r=m-ou-se
[rust.git] / src / test / ui / coherence / conflicting-impl-with-err.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `nope`
2   --> $DIR/conflicting-impl-with-err.rs:4:11
3    |
4 LL | impl From<nope::Thing> for Error {
5    |           ^^^^ use of undeclared crate or module `nope`
6
7 error[E0433]: failed to resolve: use of undeclared crate or module `nope`
8   --> $DIR/conflicting-impl-with-err.rs:5:16
9    |
10 LL |     fn from(_: nope::Thing) -> Self {
11    |                ^^^^ use of undeclared crate or module `nope`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0433`.