rust/tests/ui/error-codes/E0075.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
148 B
Rust
Raw Normal View History

2016-05-20 08:18:30 -05:00
#![feature(repr_simd)]
#[repr(simd)]
struct Bad; //~ ERROR E0075
2024-08-22 03:28:20 -05:00
#[repr(simd)]
struct AlsoBad([i32; 1], [i32; 1]); //~ ERROR E0075
2016-05-20 08:18:30 -05:00
fn main() {
}