mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 04:47:38 +03:00
Fold test_deprecated into test_lints
This commit is contained in:
parent
70a12613ef
commit
2096b11bed
2 changed files with 15 additions and 10 deletions
|
@ -1,10 +0,0 @@
|
|||
#![deny(deprecated, clippy::all, clippy::pedantic)]
|
||||
|
||||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
pub enum Error {
|
||||
#[deprecated]
|
||||
#[error("...")]
|
||||
Deprecated,
|
||||
}
|
|
@ -33,3 +33,18 @@ fn test_needless_lifetimes() {
|
|||
|
||||
let _: MyError;
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_deprecated() {
|
||||
#![deny(deprecated)]
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
pub enum MyError {
|
||||
#[deprecated]
|
||||
#[error("...")]
|
||||
Deprecated,
|
||||
}
|
||||
|
||||
#[allow(deprecated)]
|
||||
let _ = MyError::Deprecated;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue