Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
error-codes
/
E0511.rs
blob: c7e59c5c6c96fafe425f399c15fddc5142dadb92 [
file
] [
log
] [
blame
]
//@ build-fail
#![
feature
(
core_intrinsics
)]
use
std
::
intrinsics
::
simd
::
simd_add
;
fn
main
()
{
unsafe
{
simd_add
(
0
,
1
)
//~ ERROR E0511
};
}