Sign in
android
/
toolchain
/
rustc
/
5139364148b53d79de1b5e778004d41a6a33a4a2
/
.
/
tests
/
rustdoc
/
union.rs
blob: 5a788eb1b1cae65bef324d681238905a357fa462 [
file
] [
log
] [
blame
]
// @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
,
}