mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
12 lines
136 B
Rust
12 lines
136 B
Rust
//@ run-pass
|
|
#![feature(repr_simd)]
|
|
|
|
#[repr(simd)]
|
|
struct T([f64; 3]);
|
|
|
|
static X: T = T([0.0, 0.0, 0.0]);
|
|
|
|
fn main() {
|
|
let _ = X;
|
|
}
|