]> git.lizzy.rs Git - rust.git/blob - src/test/ui/simd/portable-intrinsics-arent-exposed.stderr
Rollup merge of #101648 - Timmmm:home_dir_docs, r=joshtriplett
[rust.git] / src / test / ui / simd / portable-intrinsics-arent-exposed.stderr
1 error[E0433]: failed to resolve: maybe a missing crate `core`?
2   --> $DIR/portable-intrinsics-arent-exposed.rs:4:5
3    |
4 LL | use core::simd::intrinsics;
5    |     ^^^^ maybe a missing crate `core`?
6    |
7    = help: consider adding `extern crate core` to use the `core` crate
8
9 error[E0432]: unresolved import `std::simd::intrinsics`
10   --> $DIR/portable-intrinsics-arent-exposed.rs:5:5
11    |
12 LL | use std::simd::intrinsics;
13    |     ^^^^^^^^^^^^^^^^^^^^^ no `intrinsics` in `simd`
14    |
15 help: consider importing this module instead
16    |
17 LL | use std::intrinsics;
18    |     ~~~~~~~~~~~~~~~~
19
20 error: aborting due to 2 previous errors
21
22 Some errors have detailed explanations: E0432, E0433.
23 For more information about an error, try `rustc --explain E0432`.