9 lines
113 B
Rust
9 lines
113 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("{self}")]
|
|
pub struct Error;
|
|
|
|
fn main() {
|
|
__FAIL__;
|
|
}
|