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