Fold test_deprecated into test_lints

This commit is contained in:
David Tolnay 2024-12-07 08:46:15 -08:00
parent 70a12613ef
commit 2096b11bed
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 15 additions and 10 deletions

View file

@ -1,10 +0,0 @@
#![deny(deprecated, clippy::all, clippy::pedantic)]
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[deprecated]
#[error("...")]
Deprecated,
}

View file

@ -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;
}