mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Add tests of deprecated error types
error: use of deprecated struct `test_deprecated::DeprecatedStruct` --> tests/test_lints.rs:44:16 | 44 | pub struct DeprecatedStruct; | ^^^^^^^^^^^^^^^^ | note: the lint level is defined here --> tests/test_lints.rs:39:13 | 39 | #![deny(deprecated)] | ^^^^^^^^^^ error: use of deprecated struct `test_deprecated::DeprecatedStruct` --> tests/test_lints.rs:44:16 | 44 | pub struct DeprecatedStruct; | ^^^^^^^^^^^^^^^^ error: use of deprecated enum `test_deprecated::DeprecatedEnum` --> tests/test_lints.rs:55:14 | 55 | pub enum DeprecatedEnum { | ^^^^^^^^^^^^^^
This commit is contained in:
parent
42b1460612
commit
0ba7d01e8e
1 changed files with 28 additions and 3 deletions
|
@ -39,12 +39,37 @@ fn test_deprecated() {
|
||||||
#![deny(deprecated)]
|
#![deny(deprecated)]
|
||||||
|
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
pub enum MyError {
|
#[deprecated]
|
||||||
|
#[error("...")]
|
||||||
|
pub struct DeprecatedStruct;
|
||||||
|
|
||||||
|
#[derive(Error, Debug)]
|
||||||
|
#[error("{message} {}", .message)]
|
||||||
|
pub struct DeprecatedStructField {
|
||||||
|
#[deprecated]
|
||||||
|
message: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Error, Debug)]
|
||||||
|
#[deprecated]
|
||||||
|
pub enum DeprecatedEnum {
|
||||||
|
#[error("...")]
|
||||||
|
Variant,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Error, Debug)]
|
||||||
|
pub enum DeprecatedVariant {
|
||||||
#[deprecated]
|
#[deprecated]
|
||||||
#[error("...")]
|
#[error("...")]
|
||||||
Deprecated,
|
Variant,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(deprecated)]
|
#[allow(deprecated)]
|
||||||
let _ = MyError::Deprecated;
|
let _: DeprecatedStruct;
|
||||||
|
#[allow(deprecated)]
|
||||||
|
let _: DeprecatedStructField;
|
||||||
|
#[allow(deprecated)]
|
||||||
|
let _ = DeprecatedEnum::Variant;
|
||||||
|
#[allow(deprecated)]
|
||||||
|
let _ = DeprecatedVariant::Variant;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue