mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 20:57:15 +00:00
11 lines
156 B
Rust
11 lines
156 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug)]
|
|
struct NotError;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("...")]
|
|
pub struct ErrorStruct(#[source] NotError);
|
|
|
|
fn main() {}
|