blob: 3e0234b874d7b6d8aebcc9a855bcac85ff321736 [file] [log] [blame]
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() {}