]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/highlight/fixtures/union.rs
Rollup merge of #88313 - jyn514:pre-push, r=Mark-Simulacrum
[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 }