Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spurious coherence error using error-chain with nonexistent type #43400

Closed
durka opened this issue Jul 22, 2017 · 1 comment · Fixed by #64474
Closed

spurious coherence error using error-chain with nonexistent type #43400

durka opened this issue Jul 22, 2017 · 1 comment · Fixed by #64474
Labels
A-diagnostics Area: Messages for errors, warnings, and lints C-bug Category: This is a bug.

Comments

@durka
Copy link
Contributor

durka commented Jul 22, 2017

```rust
error_chain! {
    foreign_links {
        Bad(nope::Thing); // nonexistent type
    }
}
```

The first error is sensical:

```
error[E0433]: failed to resolve. Use of undeclared type or module `nope`
  --> /Users/alex/.cargo/.cargo/script-cache/expr-698cc781c70734ef/expr.rs:11:47
   |
11 |     match {error_chain! { foreign_links { Bad(nope::Thing); } }} {
   |                                               ^^^^^^^^^^^ Use of undeclared type or module `nope`
```

But the knock-on errors are not:

```
error[E0119]: conflicting implementations of trait `std::convert::From<[type error]>` for type `try_main::Error`:
  --> /Users/alex/.cargo/.cargo/script-cache/expr-698cc781c70734ef/expr.rs:11:12
   |
11 |     match {error_chain! { foreign_links { Bad(nope::Thing); } }} {
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |            |
   |            first implementation here
   |            conflicting implementation for `try_main::Error`
   |
   = note: this error originates in a macro outside of the current crate
```
@durka
Copy link
Contributor Author

durka commented Jul 22, 2017

Minimized:

struct ErrorKind;
struct Error(ErrorKind);

impl From<nope::Thing> for Error {
    fn from(_: nope::Thing) -> Self {
        unimplemented!()
    }
}

impl From<ErrorKind> for Error {
    fn from(_: ErrorKind) -> Self {
        unimplemented!()
    }
}
error[E0433]: failed to resolve. Use of undeclared type or module `nope`
 --> expanded.rs:7:11
  |
7 | impl From<nope::Thing> for Error {
  |           ^^^^^^^^^^^ Use of undeclared type or module `nope`

error[E0433]: failed to resolve. Use of undeclared type or module `nope`
 --> expanded.rs:8:16
  |
8 |     fn from(_: nope::Thing) -> Self {
  |                ^^^^^^^^^^^ Use of undeclared type or module `nope`

error[E0119]: conflicting implementations of trait `std::convert::From<[type error]>` for type `Error`:
  --> expanded.rs:13:1
   |
7  | / impl From<nope::Thing> for Error {
8  | |     fn from(_: nope::Thing) -> Self {
9  | |         unimplemented!()
10 | |     }
11 | | }
   | |_- first implementation here
12 |
13 | / impl From<ErrorKind> for Error {
14 | |     fn from(_: ErrorKind) -> Self {
15 | |         unimplemented!()
16 | |     }
17 | | }
   | |_^ conflicting implementation for `Error`

@Mark-Simulacrum Mark-Simulacrum added A-diagnostics Area: Messages for errors, warnings, and lints C-bug Category: This is a bug. labels Jul 26, 2017
@bors bors closed this as completed in 96d07e0 Sep 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints C-bug Category: This is a bug.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants