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,12 @@
use thiserror::Error;
#[derive(Debug)]
pub struct NotError;
#[derive(Error, Debug)]
#[error("...")]
pub enum ErrorEnum {
Broken(#[source] NotError),
}
fn main() {}