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

8 lines
94 B
Rust
Raw Normal View History

2016-05-20 15:18:30 +02:00
#![feature(repr_simd)]
#[repr(simd)]
2024-08-22 01:28:20 -07:00
struct Bad([String; 2]); //~ ERROR E0077
2016-05-20 15:18:30 +02:00
fn main() {
}