mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 23:31:07 +00:00
10 lines
258 B
Rust
10 lines
258 B
Rust
#[repr(simd)] //~ error: SIMD types are experimental
|
|
struct Foo([u64; 2]);
|
|
|
|
#[repr(C)] //~ ERROR conflicting representation hints
|
|
//~^ WARN this was previously accepted
|
|
#[repr(simd)] //~ error: SIMD types are experimental
|
|
struct Bar([u64; 2]);
|
|
|
|
fn main() {}
|