Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
rustdoc-html
/
union.rs
blob: a3c046ec7c13d00af07c65f3b8afa0b217e9f33a [
file
]
//@ 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
,
}