about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0075.rs
blob: 2c610d9186b6416131c2467eccdebc7cb1d26814 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(repr_simd)]

#[repr(simd)]
struct Bad; //~ ERROR E0075

#[repr(simd)]
struct AlsoBad([i32; 1], [i32; 1]); //~ ERROR E0075

fn main() {
}