2017-08-26 18:00:33 -07:00
|
|
|
#[repr(simd)] //~ error: SIMD types are experimental
|
2024-08-22 01:28:20 -07:00
|
|
|
struct Foo([u64; 2]);
|
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
|
2024-08-22 01:28:20 -07:00
|
|
|
struct Bar([u64; 2]);
|
2018-10-31 02:54:56 +11:00
|
|
|
|
2015-07-13 11:35:00 -07:00
|
|
|
fn main() {}
|