mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 19:08:20 +00:00
11 lines
148 B
Rust
11 lines
148 B
Rust
#![feature(repr_simd)]
|
|
|
|
#[repr(simd)]
|
|
struct Bad; //~ ERROR E0075
|
|
|
|
#[repr(simd)]
|
|
struct AlsoBad([i32; 1], [i32; 1]); //~ ERROR E0075
|
|
|
|
fn main() {
|
|
}
|