Sign in
android
/
platform
/
external
/
rust
/
crates
/
thiserror
/
8c4ee6aebc1f07f955a689f4873945952b31ff81
/
.
/
tests
/
ui
/
no-display.rs
blob: 181a66e02c4d02dc8d2da8bc1edf64451ab14f3b [
file
] [
log
] [
blame
]
use
thiserror
::
Error
;
#[
derive
(
Debug
)]
struct
NoDisplay
;
#[
derive
(
Error
,
Debug
)]
#[
error
(
"thread: {thread}"
)]
pub
struct
Error
{
thread
:
NoDisplay
,
}
fn
main
()
{}