]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/union.rs
Update unsuspicious file list
[rustc.git] / src / test / rustdoc / union.rs
CommitLineData
9e0c209e
SL
1// @has union/union.U.html
2pub union U {
3 // @has - //pre "pub a: u8"
4 pub a: u8,
5099ac24 5 // @has - //pre "/* private fields */"
9e0c209e
SL
6 // @!has - //pre "b: u16"
7 b: u16,
223e47cc 8}