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,
|
||
|
},
|
||
|
}
|