]> git.proxmox.com Git - rustc.git/blob - src/test/ui/simd/portable-intrinsics-arent-exposed.stderr
New upstream version 1.63.0+dfsg1
[rustc.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 error: aborting due to 2 previous errors
16
17 Some errors have detailed explanations: E0432, E0433.
18 For more information about an error, try `rustc --explain E0432`.