mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 19:28:02 +00:00
9 lines
87 B
Rust
9 lines
87 B
Rust
#![feature(repr_simd)]
|
|
|
|
#[repr(simd)]
|
|
struct Bad(u32);
|
|
//~^ ERROR E0076
|
|
|
|
fn main() {
|
|
}
|