]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/highlight/fixtures/union.rs
Rollup merge of #83791 - the8472:relax-zip-side-effect-guarantee, r=dtolnay
[rust.git] / src / librustdoc / html / highlight / fixtures / union.rs
1 union Foo {
2     i: i8,
3     u: i8,
4 }
5
6 fn main() {
7     let union = 0;
8 }