]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/union.rs
Rollup merge of #107169 - albertlarsan68:lock-in-pre-push, r=Mark-Simulacrum
[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 }