Sign in
android
/
platform
/
external
/
rust
/
crates
/
thiserror
/
8c4ee6aebc1f07f955a689f4873945952b31ff81
/
.
/
tests
/
ui
/
source-struct-not-error.rs
blob: d59df1eef8fc126e300442afc2c1a6433b0adf26 [
file
] [
log
] [
blame
]
use
thiserror
::
Error
;
#[
derive
(
Debug
)]
struct
NotError
;
#[
derive
(
Error
,
Debug
)]
#[
error
(
"..."
)]
pub
struct
ErrorStruct
{
source
:
NotError
,
}
fn
main
()
{}