Sign in
android
/
platform
/
external
/
rust
/
crates
/
thiserror
/
880ae4dd32163223800f8657682171685bdda813
/
.
/
tests
/
test_deprecated.rs
blob: 5524666abc05c4873433beac7cadbe96f1d1891f [
file
] [
log
] [
blame
]
#![
deny
(
deprecated
,
clippy
::
all
,
clippy
::
pedantic
)]
use
thiserror
::
Error
;
#[
derive
(
Error
,
Debug
)]
pub
enum
Error
{
#[
deprecated
]
#[
error
(
"..."
)]
Deprecated
,
}