blob: 8918622773205d8262b0ed4e0c50a5d4d9e3a7f1 [file] [log] [blame]
// @has union/union.U.html
pub union U {
// @has - //pre "pub a: u8"
pub a: u8,
// @has - //pre "// some fields omitted"
// @!has - //pre "b: u16"
b: u16,
}