Sign in
fuchsia
/
third_party
/
rust
/
51b51b51d7931da85280382a81c4dd80c73ca754
/
.
/
tests
/
rustdoc
/
union.rs
blob: a3c046ec7c13d00af07c65f3b8afa0b217e9f33a [
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
,
}