rust/src/test/ui/issues/issue-74082.rs

10 lines
183 B
Rust
Raw Normal View History

2020-07-06 20:04:54 +00:00
#![allow(dead_code)]
#[repr(i128)] //~ ERROR: attribute should be applied to enum
struct Foo;
#[repr(u128)] //~ ERROR: attribute should be applied to enum
struct Bar;
fn main() {}