blob: 1e4a404fa25a7055bce48dfb142aa1874c4cfc96 [file] [log] [blame]
#[repr(simd)] //~ error: SIMD types are experimental
struct Foo(u64, u64);
#[repr(C)] //~ ERROR conflicting representation hints
#[repr(simd)] //~ error: SIMD types are experimental
struct Bar(u64, u64);
fn main() {}