Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc
/
union.rs
blob: a3c046ec7c13d00af07c65f3b8afa0b217e9f33a [
file
] [
log
] [
blame
] [
edit
]
//@ has union/union.U.html
pub
union U
{
//@ has - //pre "pub a: u8"
pub
a
:
u8
,
//@ has - //pre "/* private fields */"
//@ !has - //pre "b: u16"
b
:
u16
,
}