mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-26 17:43:10 +00:00
13 lines
161 B
Rust
13 lines
161 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug)]
|
|
struct NotError;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("...")]
|
|
pub struct ErrorStruct {
|
|
source: NotError,
|
|
}
|
|
|
|
fn main() {}
|