@ -35,3 +35,5 @@ impl From<std::num::ParseIntError> for Error {
NumParseError
}
impl std::error::Error for Error {}
@ -98,3 +98,8 @@ Digest username="Mufasa",
.trim()
);
#[test]
fn test_cast_error() {
let _m : Box<dyn std::error::Error> = Error::UnknownAlgorithm("Uhhh".into()).into();