about summary refs log tree commit diff
path: root/src/test/rustdoc/union.rs
blob: 8918622773205d8262b0ed4e0c50a5d4d9e3a7f1 (plain)
1
2
3
4
5
6
7
8
// @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,
}