about summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-simd-ffi.rs
blob: 0425e39e67745bee15394a8552637525b0acba0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(repr_simd)]
#![allow(dead_code)]

#[repr(simd)]
#[derive(Copy, Clone)]
struct LocalSimd(u8, u8);

extern {
    fn baz() -> LocalSimd; //~ ERROR use of SIMD type
    fn qux(x: LocalSimd); //~ ERROR use of SIMD type
}

fn main() {}