Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(repr_simd)]
#[repr(simd)]
struct Bad; //~ ERROR E0075
struct AlsoBad([i32; 1], [i32; 1]); //~ ERROR E0075
fn main() {
}