mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
161 B
Rust
13 lines
161 B
Rust
//@ known-bug: #121161
|
|
#![allow(incomplete_features)]
|
|
#![feature(unnamed_fields)]
|
|
|
|
|
|
#[derive(Eq)]
|
|
#[repr(C)]
|
|
struct Bar {
|
|
_: union {
|
|
a: u8,
|
|
},
|
|
}
|