rust/src/test/ui/feature-gates/feature-gate-simd-ffi.stderr

19 lines
606 B
Plaintext
Raw Normal View History

error: use of SIMD type `LocalSimd` in FFI is highly experimental and may result in invalid code
2018-12-25 15:56:47 +00:00
--> $DIR/feature-gate-simd-ffi.rs:9:17
|
2019-03-09 12:03:44 +00:00
LL | fn baz() -> LocalSimd;
| ^^^^^^^^^
|
= help: add #![feature(simd_ffi)] to the crate attributes to enable
error: use of SIMD type `LocalSimd` in FFI is highly experimental and may result in invalid code
2018-12-25 15:56:47 +00:00
--> $DIR/feature-gate-simd-ffi.rs:10:15
|
2019-03-09 12:03:44 +00:00
LL | fn qux(x: LocalSimd);
| ^^^^^^^^^
|
= help: add #![feature(simd_ffi)] to the crate attributes to enable
error: aborting due to 2 previous errors