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() {
|
|
}
|