rust/tests/ui/issues/issue-74082.rs
2023-01-11 09:32:08 +00:00

10 lines
189 B
Rust

#![allow(dead_code)]
#[repr(i128)] //~ ERROR: attribute should be applied to an enum
struct Foo;
#[repr(u128)] //~ ERROR: attribute should be applied to an enum
struct Bar;
fn main() {}