2017-08-26 18:00:33 -07:00
|
|
|
#[repr(simd)] //~ error: SIMD types are experimental
|
|
|
|
struct Foo(u64, u64);
|
2015-07-13 11:35:00 -07:00
|
|
|
|
2019-12-31 21:25:16 +01:00
|
|
|
#[repr(C)] //~ ERROR conflicting representation hints
|
2020-01-28 00:27:57 +01:00
|
|
|
//~^ WARN this was previously accepted
|
2018-10-31 02:54:56 +11:00
|
|
|
#[repr(simd)] //~ error: SIMD types are experimental
|
|
|
|
struct Bar(u64, u64);
|
|
|
|
|
2015-07-13 11:35:00 -07:00
|
|
|
fn main() {}
|