mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-26 04:27:51 +00:00
13 lines
172 B
Rust
13 lines
172 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug)]
|
|
pub struct NotError;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("...")]
|
|
pub enum ErrorEnum {
|
|
Broken { source: NotError },
|
|
}
|
|
|
|
fn main() {}
|