2021-10-22 02:47:12 -05:00
|
|
|
// May not matter, since people can use them with a nightly feature.
|
|
|
|
// However this tests to guarantee they don't leak out via portable_simd,
|
|
|
|
// and thus don't accidentally get stabilized.
|
2022-01-27 13:50:58 -06:00
|
|
|
use core::simd::intrinsics; //~ERROR E0433
|
|
|
|
use std::simd::intrinsics; //~ERROR E0432
|
2021-10-22 02:47:12 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
()
|
|
|
|
}
|