mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
10 lines
156 B
Rust
10 lines
156 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug)]
|
|
struct NotError;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("...")]
|
|
pub struct ErrorStruct(#[source] NotError);
|
|
|
|
fn main() {}
|