rust-clippy/tests/ui/crashes/ice-12284.rs

10 lines
123 B
Rust

#![allow(incomplete_features)]
#![feature(unnamed_fields)]
#[repr(C)]
struct Foo {
_: struct {
},
}
fn main() {}