Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
bbebd94da62c40c510c1bc0331f5675289d09df4
/
.
/
crates
/
thiserror
/
tests
/
ui
/
union.rs
blob: cd6a9346d5395ee7cda904b3d21b1f1acd20019b [
file
] [
log
] [
blame
]
use
thiserror
::
Error
;
#[
derive
(
Error
)]
pub
union U
{
msg
:
&
'
static
str
,
num
:
usize
,
}
fn
main
()
{}