mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
7 lines
115 B
Rust
7 lines
115 B
Rust
//@ known-bug: #138009
|
|
#![feature(min_generic_const_args)]
|
|
#[repr(simd)]
|
|
struct T([isize; N]);
|
|
|
|
static X: T = T();
|