mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
10 lines
123 B
Rust
10 lines
123 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(unnamed_fields)]
|
|
|
|
#[repr(C)]
|
|
struct Foo {
|
|
_: struct {
|
|
},
|
|
}
|
|
|
|
fn main() {}
|