Change span of as_dyn_error() to point compile error at attribute.

This commit is contained in:
Maarten de Vries 2023-10-19 15:04:40 +02:00
parent f4eac7ef7b
commit a49f7c603d
14 changed files with 209 additions and 8 deletions

View file

@ -0,0 +1,9 @@
use thiserror::Error;
#[derive(Error, Debug)]
#[error(transparent)]
pub struct Error {
message: String,
}
fn main() {}