Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
a0bb32e78d21ffeca39c2344ff377c8276e4aee8
/
.
/
crates
/
thiserror
/
tests
/
ui
/
from-not-source.rs
blob: ad7286706fd5583312e530e32ae147baa5651c96 [
file
] [
log
] [
blame
]
use
thiserror
::
Error
;
#[
derive
(
Error
,
Debug
)]
pub
struct
Error
{
#[
source
]
source
:
std
::
io
::
Error
,
#[
from
]
other
:
anyhow
::
Error
,
}
fn
main
()
{}