mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
9 lines
175 B
Rust
9 lines
175 B
Rust
//@ 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,
|
|
}
|