Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
crashes
/
138008.rs
blob: 4645b8c9d562e54012ecf7c8b338bca8012cbff6 [
file
] [
log
] [
blame
]
//@ known-bug: #138008
//@compile-flags: --crate-type=lib -Copt-level=0
#![
feature
(
repr_simd
)]
const
C
:
usize
=
16
;
#[
repr
(
simd
)]
pub
struct
Foo
([
u8
;
C
]);
pub
unsafe
fn
foo
(
a
:
Foo
)
{}