]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/union.rs
Rollup merge of #107580 - lenko-d:default_value_for_a_lifetime_generic_parameter_prod...
[rust.git] / tests / rustdoc / union.rs
1 // @has union/union.U.html
2 pub union U {
3     // @has - //pre "pub a: u8"
4     pub a: u8,
5     // @has - //pre "/* private fields */"
6     // @!has - //pre "b: u16"
7     b: u16,
8 }