Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
union
/
union-inherent-method.rs
blob: a3f962fb87211688b48041cbd0985292b4feca4b [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
union U
{
a
:
u8
,
}
impl
U
{
fn
method
(&
self
)
->
u8
{
unsafe
{
self
.
a
}
}
}
fn
main
()
{
let
u
=
U
{
a
:
10
};
assert_eq
!(
u
.
method
(),
10
);
}