You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
```rusterror_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```
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: