rust/tests/ui/feature-gates/feature-gate-simd-ffi.rs
2024-09-09 19:39:43 -07:00

14 lines
246 B
Rust

#![feature(repr_simd)]
#![allow(dead_code)]
#[repr(simd)]
#[derive(Copy, Clone)]
struct LocalSimd([u8; 2]);
extern "C" {
fn baz() -> LocalSimd; //~ ERROR use of SIMD type
fn qux(x: LocalSimd); //~ ERROR use of SIMD type
}
fn main() {}