2018-12-25 21:08:33 -07:00

8 lines
89 B
Rust

#![feature(repr_simd)]
#[repr(simd)]
struct Bad(String); //~ ERROR E0077
fn main() {
}