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

17 lines
323 B
Rust

struct ErrorKind;
struct Error(ErrorKind);
impl From<nope::Thing> for Error { //~ ERROR failed to resolve
fn from(_: nope::Thing) -> Self { //~ ERROR failed to resolve
unimplemented!()
}
}
impl From<ErrorKind> for Error {
fn from(_: ErrorKind) -> Self {
unimplemented!()
}
}
fn main() {}