Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
vendor
/
thiserror-1.0.64
/
tests
/
ui
/
duplicate-enum-source.rs
blob: 15e579f8fa75af13da14d5642c88e7d163c73e90 [
file
] [
log
] [
blame
] [
edit
]
use
thiserror
::
Error
;
#[
derive
(
Error
,
Debug
)]
pub
enum
ErrorEnum
{
Confusing
{
#[
source
]
a
:
std
::
io
::
Error
,
#[
source
]
b
:
anyhow
::
Error
,
},
}
fn
main
()
{}