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
12
tests/ui/source-enum-unnamed-field-not-error.rs
Normal file
12
tests/ui/source-enum-unnamed-field-not-error.rs
Normal 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() {}
|
Loading…
Add table
Add a link
Reference in a new issue