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