]> git.proxmox.com Git - rustc.git/blame - src/test/ui/simd/portable-intrinsics-arent-exposed.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / simd / portable-intrinsics-arent-exposed.rs
CommitLineData
a2a8927a
XL
1// May not matter, since people can use them with a nightly feature.
2// However this tests to guarantee they don't leak out via portable_simd,
3// and thus don't accidentally get stabilized.
5099ac24
FG
4use core::simd::intrinsics; //~ERROR E0433
5use std::simd::intrinsics; //~ERROR E0432
a2a8927a
XL
6
7fn main() {
8 ()
9}