mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
11 lines
273 B
Rust
11 lines
273 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error]
|
|
pub struct MyError;
|
|
|
|
fn main() {
|
|
// FIXME: there should be no error on the following line. Thiserror should
|
|
// emit an Error impl regardless of the bad attribute.
|
|
_ = &MyError as &dyn std::error::Error;
|
|
}
|