Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
simd
/
simd-lane-limit-err.rs
blob: 00390bdbdafaca0bca068df51428c3d6aae9376a [
file
] [
log
] [
blame
]
//@ build-fail
//@ aux-crate:simd=simd-lane-limit.rs
extern
crate simd
;
use
simd
::
Simd
;
fn
main
()
{
let
_x
:
Simd
<
i32
,
16
>
=
Simd
([
0
;
16
]);
//~^ ERROR the SIMD type `simd::Simd<i32, 16>` has more elements than the limit 8
}