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