mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
245 B
Rust
14 lines
245 B
Rust
#![feature(repr_simd)]
|
|
#![allow(dead_code)]
|
|
|
|
#[repr(simd)]
|
|
#[derive(Copy, Clone)]
|
|
struct LocalSimd(u8, u8);
|
|
|
|
extern "C" {
|
|
fn baz() -> LocalSimd; //~ ERROR use of SIMD type
|
|
fn qux(x: LocalSimd); //~ ERROR use of SIMD type
|
|
}
|
|
|
|
fn main() {}
|