mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
Change span of as_dyn_error()
to point compile error at attribute.
This commit is contained in:
parent
f4eac7ef7b
commit
a49f7c603d
14 changed files with 209 additions and 8 deletions
9
tests/ui/transparent-struct-not-error.rs
Normal file
9
tests/ui/transparent-struct-not-error.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error(transparent)]
|
||||
pub struct Error {
|
||||
message: String,
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue