Sign in
android
/
platform
/
external
/
rust
/
crates
/
thiserror
/
8c4ee6aebc1f07f955a689f4873945952b31ff81
/
.
/
tests
/
ui
/
bad-field-attr.rs
blob: d5429b2b2637732dc720154f4e250a97049f59dc [
file
] [
log
] [
blame
]
use
thiserror
::
Error
;
#[
derive
(
Error
,
Debug
)]
#[
error
(
transparent
)]
pub
struct
Error
(#[
error
(
transparent
)]
std
::
io
::
Error
);
fn
main
()
{}