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