mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
258 B
Rust
10 lines
258 B
Rust
#[repr(simd)] //~ error: SIMD types are experimental
|
|
struct Foo(u64, u64);
|
|
|
|
#[repr(C)] //~ ERROR conflicting representation hints
|
|
//~^ WARN this was previously accepted
|
|
#[repr(simd)] //~ error: SIMD types are experimental
|
|
struct Bar(u64, u64);
|
|
|
|
fn main() {}
|