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