mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
12 lines
157 B
Rust
12 lines
157 B
Rust
//@ build-fail
|
|
|
|
#![feature(core_intrinsics)]
|
|
|
|
use std::intrinsics::simd::simd_add;
|
|
|
|
fn main() {
|
|
unsafe {
|
|
simd_add(0, 1) //~ ERROR E0511
|
|
};
|
|
}
|