]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/highlight/fixtures/union.html
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[rust.git] / src / librustdoc / html / highlight / fixtures / union.html
1 <span class="kw">union</span> <span class="ident">Foo</span> {
2     <span class="ident">i</span>: <span class="ident">i8</span>,
3     <span class="ident">u</span>: <span class="ident">i8</span>,
4 }
5
6 <span class="kw">fn</span> <span class="ident">main</span>() {
7     <span class="kw">let</span> <span class="ident">union</span> <span class="op">=</span> <span class="number">0</span>;
8 }